2015-09-25 18:13:38 +02:00
{{template "base/head" .}}
2015-12-05 01:09:14 -05:00
<div class="admin notice">
2017-03-15 22:39:38 +00:00
{{template "admin/navbar" .}}
2015-12-07 23:30:52 +01:00
<div class="ui container">
2017-03-15 22:39:38 +00:00
{{template "base/alert" .}}
<h4 class="ui top attached header">
{{.i18n.Tr "admin.notices.system_notice_list"}} ({{.i18n.Tr "admin.total" .Total}})
</h4>
<div class="ui attached table segment">
<table class="ui very basic select selectable table">
<thead>
<tr>
<th></th>
<th>ID</th>
<th>{{.i18n.Tr "admin.notices.type"}}</th>
<th>{{.i18n.Tr "admin.notices.desc"}}</th>
<th width="100px">{{.i18n.Tr "admin.users.created"}}</th>
<th>{{.i18n.Tr "admin.notices.op"}}</th>
</tr>
</thead>
<tbody>
{{range .Notices}}
<tr>
<td class="collapsing">
<div class="ui fitted checkbox" data-id="{{.ID}}">
<input type="checkbox"> <label></label>
</div>
</td>
<td>{{.ID}}</td>
<td>{{$.i18n.Tr .TrStr}}</td>
<td>{{SubStr .Description 0 120}}...</td>
2017-12-11 12:37:04 +08:00
<td><span class="poping up" data-content="{{.CreatedUnix.AsTime}}" data-variation="inverted tiny">{{.CreatedUnix.FormatShort}}</span></td>
2017-03-15 22:39:38 +00:00
<td><a href=" #"><i class="browser icon view-detail" data-content="{{.Description}}"></i></a></td>
</tr>
{{end}}
</tbody>
2018-07-05 16:35:42 +01:00
{{ if .Notices }}
<tfoot class="full-width">
<tr>
<th></th>
<th colspan="5">
<div class="ui right">
2020-02-26 10:25:54 -06:00
<form method="post" action="{{AppSubUrl}}/admin/notices/empty">
{{.CsrfTokenHtml}}
<button type="submit" class="ui red small button">{{.i18n.Tr "admin.notices.delete_all"}}</button>
</form>
2015-12-07 23:30:52 +01:00
</div>
2018-07-05 16:35:42 +01:00
<div class="ui floating upward dropdown small button">
<span class="text">{{.i18n.Tr "admin.notices.actions"}}</span>
<div class="menu">
<div class="item select action" data-action="select-all">
{{.i18n.Tr "admin.notices.select_all"}}
</div>
<div class="item select action" data-action="deselect-all">
{{.i18n.Tr "admin.notices.deselect_all"}}
</div>
<div class="item select action" data-action="inverse">
{{.i18n.Tr "admin.notices.inverse_selection"}}
</div>
</div>
2015-12-07 23:30:52 +01:00
</div>
2019-04-24 14:14:36 +01:00
<div class="ui small teal button" id="delete-selection" data-link="{{.Link}}/delete" data-redirect="{{.Link}}?page={{.Page.Paginater.Current}}">
2018-07-05 16:35:42 +01:00
{{.i18n.Tr "admin.notices.delete_selected"}}
2015-12-07 23:30:52 +01:00
</div>
2018-07-05 16:35:42 +01:00
</th>
</tr>
</tfoot>
{{ end }}
2017-03-15 22:39:38 +00:00
</table>
2015-12-07 23:30:52 +01:00
</div>
2017-03-15 22:39:38 +00:00
2019-04-20 06:15:19 +02:00
{{ template "base/paginate" . }}
2015-12-07 23:30:52 +01:00
</div>
2014-10-08 18:29:18 -04:00
</div>
2015-12-05 01:09:14 -05:00
<div class="ui modal" id="detail-modal">
2015-12-07 23:30:52 +01:00
<i class="close icon"></i>
<div class="header">{{$.i18n.Tr "admin.notices.view_detail_header"}}</div>
<div class="content">
<p></p>
</div>
2015-12-05 01:09:14 -05:00
</div>
2015-09-25 18:13:38 +02:00
{{template "base/footer" .}}