2014-02-15 08:17:13 +08:00
|
|
|
<table class='table'>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2014-12-09 05:35:49 +08:00
|
|
|
<th>{{i18n 'admin.email.time'}}</th>
|
|
|
|
<th>{{i18n 'admin.email.user'}}</th>
|
|
|
|
<th>{{i18n 'admin.email.to_address'}}</th>
|
|
|
|
<th>{{i18n 'admin.email.email_type'}}</th>
|
|
|
|
<th>{{i18n 'admin.email.skipped_reason'}}</th>
|
2014-02-15 08:17:13 +08:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tr class="filters">
|
2014-12-09 05:35:49 +08:00
|
|
|
<td>{{i18n 'admin.email.logs.filters.title'}}</td>
|
2014-06-10 23:54:38 +08:00
|
|
|
<td>{{text-field value=filter.user placeholderKey="admin.email.logs.filters.user_placeholder"}}</td>
|
|
|
|
<td>{{text-field value=filter.address placeholderKey="admin.email.logs.filters.address_placeholder"}}</td>
|
|
|
|
<td>{{text-field value=filter.type placeholderKey="admin.email.logs.filters.type_placeholder"}}</td>
|
|
|
|
<td>{{text-field value=filter.skipped_reason placeholderKey="admin.email.logs.filters.skipped_reason_placeholder"}}</td>
|
2014-02-15 08:17:13 +08:00
|
|
|
</tr>
|
|
|
|
|
|
|
|
{{#each model}}
|
|
|
|
<tr>
|
2014-09-13 02:27:34 +08:00
|
|
|
<td>{{format-date created_at}}</td>
|
2014-02-15 08:17:13 +08:00
|
|
|
<td>
|
|
|
|
{{#if user}}
|
|
|
|
{{#link-to 'adminUser' user}}{{avatar user imageSize="tiny"}}{{/link-to}}
|
|
|
|
{{#link-to 'adminUser' user}}{{user.username}}{{/link-to}}
|
|
|
|
{{else}}
|
|
|
|
—
|
|
|
|
{{/if}}
|
|
|
|
</td>
|
|
|
|
<td><a href='mailto:{{unbound to_address}}'>{{to_address}}</a></td>
|
|
|
|
<td>{{email_type}}</td>
|
|
|
|
<td>{{skipped_reason}}</td>
|
|
|
|
</tr>
|
|
|
|
{{else}}
|
2014-12-09 05:35:49 +08:00
|
|
|
<tr><td colspan="5">{{i18n 'admin.email.logs.none'}}</td></tr>
|
2014-02-15 08:17:13 +08:00
|
|
|
{{/each}}
|
|
|
|
|
|
|
|
</table>
|