discourse/app/assets/javascripts/admin/templates/email_logs.js.handlebars

32 lines
921 B
Handlebars
Raw Normal View History

2013-03-19 15:41:11 -04:00
<table class='table'>
<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
{{#if model.length}}
2013-02-05 14:16:51 -05:00
{{#group}}
{{#collection contentBinding="model" tagName="tbody" itemTagName="tr"}}
<td>{{date created_at}}</td>
2013-02-05 14:16:51 -05:00
<td>
{{#if user}}
{{#linkTo 'adminUser' user}}{{avatar user imageSize="tiny"}}{{/linkTo}}
{{#linkTo 'adminUser' user}}{{user.username}}{{/linkTo}}
2013-02-05 14:16:51 -05:00
{{else}}
&mdash;
{{/if}}
2013-03-19 15:41:11 -04:00
</td>
<td><a href='mailto:{{unbound to_address}}'>{{to_address}}</a></td>
<td>{{email_type}}</td>
<td>{{reply_key}}</td>
2013-02-05 14:16:51 -05:00
{{/collection}}
{{/group}}
{{/if}}
</table>