2014-12-08 16:35:49 -05:00
|
|
|
<p>{{i18n 'admin.logs.screened_ips.description'}}</p>
|
2015-12-17 13:40:50 -05:00
|
|
|
|
2014-12-06 23:15:22 -05:00
|
|
|
<div class="pull-right">
|
2015-02-10 13:38:59 -05:00
|
|
|
{{text-field value=filter class="ip-address-input" placeholderKey="admin.logs.screened_ips.form.filter" autocorrect="off" autocapitalize="off"}}
|
2015-12-17 13:40:50 -05:00
|
|
|
{{d-button action="rollUp" title="admin.logs.screened_ips.roll_up.title" label="admin.logs.screened_ips.roll_up.text"}}
|
|
|
|
{{d-button action="exportScreenedIpList" icon="download" title="admin.export_csv.button_title.screened_ip" label="admin.export_csv.button_text"}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
{{screened-ip-address-form action="recordAdded"}}
|
2014-12-06 23:15:22 -05:00
|
|
|
</div>
|
2013-10-24 17:18:10 -04:00
|
|
|
|
2015-04-28 17:05:06 -04:00
|
|
|
{{#conditional-loading-spinner condition=loading}}
|
2013-10-21 14:49:51 -04:00
|
|
|
{{#if model.length}}
|
|
|
|
|
2013-10-22 16:30:30 -04:00
|
|
|
<div class='table admin-logs-table screened-ip-addresses'>
|
2013-10-21 14:49:51 -04:00
|
|
|
<div class="heading-container">
|
2014-12-08 16:35:49 -05:00
|
|
|
<div class="col heading first ip_address">{{i18n 'admin.logs.ip_address'}}</div>
|
|
|
|
<div class="col heading action">{{i18n 'admin.logs.action'}}</div>
|
|
|
|
<div class="col heading match_count">{{i18n 'admin.logs.match_count'}}</div>
|
|
|
|
<div class="col heading last_match_at">{{i18n 'admin.logs.last_match_at'}}</div>
|
|
|
|
<div class="col heading created_at">{{i18n 'admin.logs.created_at'}}</div>
|
2013-10-22 16:30:30 -04:00
|
|
|
<div class="col heading actions"></div>
|
2013-10-21 14:49:51 -04:00
|
|
|
<div class="clearfix"></div>
|
|
|
|
</div>
|
|
|
|
|
2016-11-24 12:58:06 -05:00
|
|
|
{{#each model as |item|}}
|
|
|
|
<div class="admin-list-item">
|
|
|
|
<div class="col first ip_address">
|
|
|
|
{{#if item.editing}}
|
|
|
|
{{text-field value=item.ip_address autofocus="autofocus"}}
|
|
|
|
{{else}}
|
|
|
|
<span {{action "edit" item}}>
|
|
|
|
{{#if item.isRange}}
|
|
|
|
<strong>{{item.ip_address}}</strong>
|
|
|
|
{{else}}
|
|
|
|
{{item.ip_address}}
|
|
|
|
{{/if}}
|
|
|
|
</span>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
<div class="col action">
|
|
|
|
{{#if item.isBlocked}}
|
2017-07-26 16:25:09 -04:00
|
|
|
{{d-icon "ban"}}
|
2016-11-24 12:58:06 -05:00
|
|
|
{{else}}
|
2017-07-26 16:25:09 -04:00
|
|
|
{{d-icon "check"}}
|
2016-11-24 12:58:06 -05:00
|
|
|
{{/if}}
|
|
|
|
{{item.actionName}}
|
|
|
|
</div>
|
|
|
|
<div class="col match_count">{{item.match_count}}</div>
|
|
|
|
<div class="col last_match_at">
|
|
|
|
{{#if item.last_match_at}}
|
|
|
|
{{age-with-tooltip item.last_match_at}}
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
<div class="col created_at">{{age-with-tooltip item.created_at}}</div>
|
|
|
|
<div class="col actions">
|
|
|
|
{{#unless item.editing}}
|
|
|
|
{{d-button action="destroy" actionParam=item icon="trash-o" class="btn-danger"}}
|
|
|
|
{{d-button action="edit" actionParam=item icon="pencil"}}
|
2018-02-19 14:06:13 -05:00
|
|
|
{{#if item.isBlocked}}
|
2016-11-24 12:58:06 -05:00
|
|
|
{{d-button action="allow" actionParam=item icon="check" label="admin.logs.screened_ips.actions.do_nothing"}}
|
|
|
|
{{else}}
|
|
|
|
{{d-button action="block" actionParam=item icon="ban" label="admin.logs.screened_ips.actions.block"}}
|
|
|
|
{{/if}}
|
|
|
|
{{else}}
|
|
|
|
{{d-button action="save" actionParam=item label="admin.logs.save"}}
|
|
|
|
<a {{action "cancel" item}}>{{i18n 'cancel'}}</a>
|
|
|
|
{{/unless}}
|
|
|
|
</div>
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
</div>
|
|
|
|
{{/each}}
|
2013-10-21 14:49:51 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{{else}}
|
2014-12-08 16:35:49 -05:00
|
|
|
{{i18n 'search.no_results'}}
|
2013-10-21 14:49:51 -04:00
|
|
|
{{/if}}
|
2015-04-28 17:05:06 -04:00
|
|
|
{{/conditional-loading-spinner}}
|