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>
|
|
|
|
|
2014-12-13 02:28:20 +08:00
|
|
|
{{#each l in model}}
|
2014-02-15 08:17:13 +08:00
|
|
|
<tr>
|
2014-12-13 02:28:20 +08:00
|
|
|
<td>{{format-date l.created_at}}</td>
|
2014-02-15 08:17:13 +08:00
|
|
|
<td>
|
2014-12-13 02:28:20 +08:00
|
|
|
{{#if l.user}}
|
|
|
|
{{#link-to 'adminUser' l.user}}{{avatar l.user imageSize="tiny"}}{{/link-to}}
|
|
|
|
{{#link-to 'adminUser' l.user}}{{l.user.username}}{{/link-to}}
|
2014-02-15 08:17:13 +08:00
|
|
|
{{else}}
|
|
|
|
—
|
|
|
|
{{/if}}
|
|
|
|
</td>
|
2014-12-13 02:28:20 +08:00
|
|
|
<td><a href='mailto:{{unbound l.to_address}}'>{{l.to_address}}</a></td>
|
|
|
|
<td>{{l.email_type}}</td>
|
|
|
|
<td>{{l.skipped_reason}}</td>
|
2014-02-15 08:17:13 +08:00
|
|
|
</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>
|