2015-09-25 12:13:38 -04:00
|
|
|
{{template "base/head" .}}
|
2015-12-05 01:09:14 -05:00
|
|
|
<div class="admin notice">
|
2017-03-15 18:39:38 -04:00
|
|
|
{{template "admin/navbar" .}}
|
2015-12-07 17:30:52 -05:00
|
|
|
<div class="ui container">
|
2017-03-15 18:39:38 -04: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-10 23:37:04 -05:00
|
|
|
<td><span class="poping up" data-content="{{.CreatedUnix.AsTime}}" data-variation="inverted tiny">{{.CreatedUnix.FormatShort}}</span></td>
|
2017-03-15 18:39:38 -04:00
|
|
|
<td><a href="#"><i class="browser icon view-detail" data-content="{{.Description}}"></i></a></td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
2018-07-05 11:35:42 -04:00
|
|
|
{{ if .Notices }}
|
|
|
|
<tfoot class="full-width">
|
|
|
|
<tr>
|
|
|
|
<th></th>
|
|
|
|
<th colspan="5">
|
|
|
|
<div class="ui right">
|
|
|
|
<a class="ui red small button" href="{{AppSubUrl}}/admin/notices/empty">{{.i18n.Tr "admin.notices.delete_all"}}</a>
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
2018-07-05 11:35:42 -04: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 17:30:52 -05:00
|
|
|
</div>
|
2019-04-24 09:14:36 -04:00
|
|
|
<div class="ui small teal button" id="delete-selection" data-link="{{.Link}}/delete" data-redirect="{{.Link}}?page={{.Page.Paginater.Current}}">
|
2018-07-05 11:35:42 -04:00
|
|
|
{{.i18n.Tr "admin.notices.delete_selected"}}
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
2018-07-05 11:35:42 -04:00
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
</tfoot>
|
|
|
|
{{ end }}
|
2017-03-15 18:39:38 -04:00
|
|
|
</table>
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
2017-03-15 18:39:38 -04:00
|
|
|
|
2019-04-20 00:15:19 -04:00
|
|
|
{{ template "base/paginate" . }}
|
2015-12-07 17:30:52 -05: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 17:30:52 -05: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 12:13:38 -04:00
|
|
|
{{template "base/footer" .}}
|