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.
30 lines
561 B
30 lines
561 B
<table class="table table-striped">
|
|
<tr>
|
|
<th>::_("Date")::</th>
|
|
<th>::_("Subject")::</th>
|
|
<th>::_("Status")::</th>
|
|
</tr>
|
|
|
|
::foreach m emails::
|
|
|
|
::if m.failure!=null::
|
|
::set class = "danger"::
|
|
::else::
|
|
::set class = "success"::
|
|
::end::
|
|
|
|
<tr class="::class::">
|
|
<td>::hDate(m.date)::</td>
|
|
<td>::m.subject::</td>
|
|
<td>
|
|
::if m.failure!=null::
|
|
<span class="glyphicon glyphicon-exclamation-sign"></span> ::m.failure::
|
|
::else::
|
|
<span class="glyphicon glyphicon-ok"></span> ::m.success::
|
|
::end::
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
|
|
::end::</table>
|