2013-03-19 15:41:11 -04:00
|
|
|
<table class='table'>
|
2013-08-01 17:15:28 -04:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{{i18n admin.email.sent_at}}</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.reply_key}}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-05-20 12:47:59 -04:00
|
|
|
{{#if model.length}}
|
2013-08-02 13:17:28 -04:00
|
|
|
{{#groupedEach model}}
|
|
|
|
<tr>
|
|
|
|
<td>{{date created_at}}</td>
|
|
|
|
<td>
|
|
|
|
{{#if user}}
|
2013-09-16 14:08:55 -04:00
|
|
|
{{#link-to 'adminUser' user}}{{avatar user imageSize="tiny"}}{{/link-to}}
|
|
|
|
{{#link-to 'adminUser' user}}{{user.username}}{{/link-to}}
|
2013-08-02 13:17:28 -04:00
|
|
|
{{else}}
|
|
|
|
—
|
|
|
|
{{/if}}
|
|
|
|
</td>
|
|
|
|
<td><a href='mailto:{{unbound to_address}}'>{{to_address}}</a></td>
|
|
|
|
<td>{{email_type}}</td>
|
|
|
|
<td>{{reply_key}}</td>
|
|
|
|
</tr>
|
|
|
|
{{/groupedEach}}
|
2013-02-05 14:16:51 -05:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
</table>
|