You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
561 B

  1. <table class="table table-striped">
  2. <tr>
  3. <th>::_("Date")::</th>
  4. <th>::_("Subject")::</th>
  5. <th>::_("Status")::</th>
  6. </tr>
  7. ::foreach m emails::
  8. ::if m.failure!=null::
  9. ::set class = "danger"::
  10. ::else::
  11. ::set class = "success"::
  12. ::end::
  13. <tr class="::class::">
  14. <td>::hDate(m.date)::</td>
  15. <td>::m.subject::</td>
  16. <td>
  17. ::if m.failure!=null::
  18. <span class="glyphicon glyphicon-exclamation-sign"></span> ::m.failure::
  19. ::else::
  20. <span class="glyphicon glyphicon-ok"></span> ::m.success::
  21. ::end::
  22. </td>
  23. </tr>
  24. ::end::</table>