quarantine.tpl 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <html>
  2. <head>
  3. <style>
  4. body {
  5. font-family: Helvetica, Arial, Sans-Serif;
  6. }
  7. table {
  8. border-collapse: collapse;
  9. width: 100%;
  10. margin-bottom: 20px;
  11. }
  12. th, td {
  13. padding: 8px;
  14. text-align: left;
  15. border-bottom: 1px solid #ddd;
  16. vertical-align: top;
  17. }
  18. th {
  19. background-color: #56B04C;
  20. color: white;
  21. }
  22. tr:nth-child(even){background-color: #f2f2f2}
  23. </style>
  24. </head>
  25. <body>
  26. <p>Hi!<br>
  27. {% if counter == 1 %}
  28. There is 1 new message waiting in quarantine:<br>
  29. {% else %}
  30. There are {{counter}} new messages waiting in quarantine:<br>
  31. {% endif %}
  32. <table>
  33. <tr><th>Subject</th><th>Sender</th><th>Score</th><th>Arrived on</th>{% if quarantine_acl == 1 %}<th>Actions</th>{% endif %}</tr>
  34. {% for line in meta %}
  35. <tr>
  36. <td>{{ line.subject|e }}</td>
  37. <td>{{ line.sender|e }}</td>
  38. <td>{{ line.score }}</td>
  39. <td>{{ line.created }}</td>
  40. {% if quarantine_acl == 1 %}
  41. <td><a href="https://{{ hostname }}/qhandler/release/{{ line.qhash }}">release</a> | <a href="https://{{ hostname }}/qhandler/delete/{{ line.qhash }}">delete</a></td>
  42. {% endif %}
  43. </tr>
  44. {% endfor %}
  45. </table>
  46. </p>
  47. </body>
  48. </html>