2013-08-02 09:30:13 +08:00
|
|
|
{{#if loading}}
|
|
|
|
<div class='admin-loading'>{{i18n loading}}</div>
|
|
|
|
{{else}}
|
|
|
|
{{#if model.length}}
|
|
|
|
<table class='table blocked-emails'>
|
|
|
|
<thead>
|
2013-08-08 04:04:12 +08:00
|
|
|
<th class="email">{{i18n admin.logs.blocked_emails.email}}</th>
|
2013-08-02 09:30:13 +08:00
|
|
|
<th class="action">{{i18n admin.logs.action}}</th>
|
2013-08-08 04:04:12 +08:00
|
|
|
<th class="match_count">{{i18n admin.logs.blocked_emails.match_count}}</th>
|
|
|
|
<th class="last_match_at">{{i18n admin.logs.blocked_emails.last_match_at}}</th>
|
2013-08-02 09:30:13 +08:00
|
|
|
<th class="created_at">{{i18n admin.logs.created_at}}</th>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
{{#each model}}
|
|
|
|
<tr>
|
|
|
|
<td class="email">{{email}}</td>
|
|
|
|
<td class="action">{{actionName}}</td>
|
|
|
|
<td class="match_count">{{match_count}}</td>
|
|
|
|
<td class="last_match_at">{{unboundAgeWithTooltip last_match_at}}</td>
|
|
|
|
<td class="created_at">{{unboundAgeWithTooltip created_at}}</td>
|
|
|
|
</tr>
|
|
|
|
{{/each}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{{else}}
|
|
|
|
No results.
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|