mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
371bbadb92
* Run no-implicit-this codemod for app templates * Run tagless-ember-components-codemod for plugins * Turn on no-implicit-this lint
45 lines
1.9 KiB
Handlebars
45 lines
1.9 KiB
Handlebars
<p>
|
|
{{i18n "admin.logs.screened_emails.description"}}
|
|
</p>
|
|
|
|
<DButton @class="btn-default screened-email-export" @action={{action "exportScreenedEmailList"}} @title="admin.export_csv.button_title.screened_email" @icon="download" @label="admin.export_csv.button_text" />
|
|
|
|
<br>
|
|
|
|
<ConditionalLoadingSpinner @condition={{this.loading}}>
|
|
{{#if this.model.length}}
|
|
|
|
<table class="screened-emails grid">
|
|
<thead>
|
|
<th class="first email">{{i18n "admin.logs.screened_emails.email"}}</th>
|
|
<th class="action">{{i18n "admin.logs.action"}}</th>
|
|
<th class="match_count">{{i18n "admin.logs.match_count"}}</th>
|
|
<th class="last_match_at">{{i18n "admin.logs.last_match_at"}}</th>
|
|
<th class="created_at">{{i18n "admin.logs.created_at"}}</th>
|
|
<th class="ip_address">{{i18n "admin.logs.ip_address"}}</th>
|
|
<th class="action"></th>
|
|
</thead>
|
|
<tbody>
|
|
{{#each this.model as |item|}}
|
|
<tr class="admin-list-item">
|
|
<td class="col first email">
|
|
<div class="overflow-ellipsis" title={{item.email}}>{{item.email}}</div>
|
|
</td>
|
|
<td class="action">{{item.actionName}}</td>
|
|
<td class="match_count"><div class="label">{{i18n "admin.logs.match_count"}}</div>{{item.match_count}}</td>
|
|
<td class="last_match_at"><div class="label">{{i18n "admin.logs.last_match_at"}}</div>{{age-with-tooltip item.last_match_at}}</td>
|
|
<td class="created_at"><div class="label">{{i18n "admin.logs.created_at"}}</div>{{age-with-tooltip item.created_at}}</td>
|
|
<td class="ip_address">{{item.ip_address}}</td>
|
|
<td class="action">
|
|
<DButton @action={{action "clearBlock"}} @actionParam={{item}} @icon="check" @label="admin.logs.screened_emails.actions.allow" />
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
|
|
{{else}}
|
|
{{i18n "search.no_results"}}
|
|
{{/if}}
|
|
</ConditionalLoadingSpinner>
|