2022-06-30 18:30:50 +08:00
|
|
|
<LoadMore @selector=".email-list tr" @action={{action "loadMore"}}>
|
2016-03-25 23:37:26 +08:00
|
|
|
<table class="table email-list">
|
|
|
|
<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>
|
2022-08-03 06:11:54 +08:00
|
|
|
<th>{{i18n "admin.email.post_link_with_smtp"}}</th>
|
2016-03-25 23:37:26 +08:00
|
|
|
</tr>
|
|
|
|
</thead>
|
2020-02-10 15:14:26 +08:00
|
|
|
<tbody>
|
|
|
|
<tr class="filters">
|
|
|
|
<td>{{i18n "admin.email.logs.filters.title"}}</td>
|
2022-07-06 01:41:31 +08:00
|
|
|
<td><TextField @value={{this.filter.user}} @placeholderKey="admin.email.logs.filters.user_placeholder" /></td>
|
|
|
|
<td><TextField @value={{this.filter.address}} @placeholderKey="admin.email.logs.filters.address_placeholder" /></td>
|
|
|
|
<td><TextField @value={{this.filter.type}} @placeholderKey="admin.email.logs.filters.type_placeholder" /></td>
|
|
|
|
<td><TextField @value={{this.filter.reply_key}} @placeholderKey="admin.email.logs.filters.reply_key_placeholder" /></td>
|
2022-08-03 06:11:54 +08:00
|
|
|
<td></td>
|
2016-03-25 23:37:26 +08:00
|
|
|
</tr>
|
|
|
|
|
2022-07-06 01:41:31 +08:00
|
|
|
{{#each this.model as |l|}}
|
2020-08-05 04:47:50 +08:00
|
|
|
<tr class="sent-email-item">
|
|
|
|
<td class="sent-email-date">{{format-date l.created_at}}</td>
|
|
|
|
<td class="sent-email-username">
|
2020-02-10 15:14:26 +08:00
|
|
|
{{#if l.user}}
|
2022-06-30 18:30:50 +08:00
|
|
|
<LinkTo @route="adminUser" @model={{l.user}}>{{avatar l.user imageSize="tiny"}}</LinkTo>
|
|
|
|
<LinkTo @route="adminUser" @model={{l.user}}>{{l.user.username}}</LinkTo>
|
2020-02-10 15:14:26 +08:00
|
|
|
{{else}}
|
|
|
|
—
|
|
|
|
{{/if}}
|
|
|
|
</td>
|
2020-08-05 04:47:50 +08:00
|
|
|
<td class="sent-email-address">
|
2020-02-10 15:14:26 +08:00
|
|
|
{{#if l.bounced}}{{d-icon "redo" title="admin.email.bounced"}}{{/if}}
|
2020-03-09 22:28:31 +08:00
|
|
|
<a href="mailto:{{l.to_address}}">{{l.to_address}}</a>
|
2020-02-10 15:14:26 +08:00
|
|
|
</td>
|
2020-08-05 04:47:50 +08:00
|
|
|
<td class="sent-email-type">{{l.email_type}}</td>
|
2022-08-03 06:11:54 +08:00
|
|
|
<td class="sent-email-reply-key">
|
|
|
|
<span title={{l.reply_key}} class="reply-key">{{l.reply_key}}</span>
|
|
|
|
</td>
|
|
|
|
<td class="sent-email-post-link-with-smtp-response">
|
2020-02-10 15:14:26 +08:00
|
|
|
{{#if l.post_url}}
|
2022-08-03 06:11:54 +08:00
|
|
|
<a href={{l.post_url}}>{{l.post_description}}</a><br>
|
2020-02-10 15:14:26 +08:00
|
|
|
{{/if}}
|
2022-08-03 06:11:54 +08:00
|
|
|
<code title={{l.smtp_transaction_response}}>{{l.smtp_transaction_response}}</code>
|
2020-02-10 15:14:26 +08:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{else}}
|
2022-07-06 01:41:31 +08:00
|
|
|
{{#unless this.loading}}
|
2020-02-10 15:14:26 +08:00
|
|
|
<tr><td colspan="5">{{i18n "admin.email.logs.none"}}</td></tr>
|
|
|
|
{{/unless}}
|
|
|
|
{{/each}}
|
|
|
|
</tbody>
|
2016-03-25 23:37:26 +08:00
|
|
|
</table>
|
2022-06-30 18:30:50 +08:00
|
|
|
</LoadMore>
|
2016-01-19 07:57:55 +08:00
|
|
|
|
2022-07-06 01:41:31 +08:00
|
|
|
<ConditionalLoadingSpinner @condition={{this.loading}} />
|