44e0cfa96e
Co-Author: @wxiaoguang This is the first step of #24229. And this PR will only includes html changes, and followed by other PRs that fine tune css and change to submenus. After: Admin Level <img width="1400" alt="Screen Shot 2023-04-21 at 10 07 16" src="https://user-images.githubusercontent.com/17645053/233523870-f848b61d-056a-4b41-9760-a9a49fea1fe8.png"> User Level <img width="1422" alt="Screen Shot 2023-04-21 at 10 07 23" src="https://user-images.githubusercontent.com/17645053/233523878-979adb20-a657-43d9-99a6-ad414010c0ef.png"> Repo Level <img width="1404" alt="Screen Shot 2023-04-21 at 10 07 07" src="https://user-images.githubusercontent.com/17645053/233523863-337440bd-c03a-4dfd-87fa-cef40300bfe0.png"> --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
78 lines
2.9 KiB
Handlebars
78 lines
2.9 KiB
Handlebars
{{template "admin/layout_head" (dict "ctxData" . "pageClass" "admin notice")}}
|
|
<div class="admin-setting-content">
|
|
<h4 class="ui top attached header">
|
|
{{.locale.Tr "admin.notices.system_notice_list"}} ({{.locale.Tr "admin.total" .Total}})
|
|
</h4>
|
|
<div class="ui attached table segment">
|
|
<table id="notice-table" class="ui very basic select selectable table unstackable">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th>ID</th>
|
|
<th>{{.locale.Tr "admin.notices.type"}}</th>
|
|
<th>{{.locale.Tr "admin.notices.desc"}}</th>
|
|
<th width="100px">{{.locale.Tr "admin.users.created"}}</th>
|
|
<th>{{.locale.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">
|
|
</div>
|
|
</td>
|
|
<td>{{.ID}}</td>
|
|
<td>{{$.locale.Tr .TrStr}}</td>
|
|
<td class="view-detail"><span class="notice-description text truncate">{{.Description}}</span></td>
|
|
<td>{{template "shared/datetime/short" (dict "Datetime" .CreatedUnix.FormatLong "Fallback" .CreatedUnix.FormatShort)}}</td>
|
|
<td><a href="#">{{svg "octicon-note" 16 "view-detail"}}</a></td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
{{if .Notices}}
|
|
<tfoot class="full-width">
|
|
<tr>
|
|
<th></th>
|
|
<th colspan="5">
|
|
<form class="ui right" method="post" action="{{AppSubUrl}}/admin/notices/empty">
|
|
{{.CsrfTokenHtml}}
|
|
<button type="submit" class="ui red small button">{{.locale.Tr "admin.notices.delete_all"}}</button>
|
|
</form>
|
|
<div class="ui floating upward dropdown small button">{{/* TODO: Make this dropdown accessible */}}
|
|
<span class="text">{{.locale.Tr "admin.notices.operations"}}</span>
|
|
<div class="menu">
|
|
<div class="item select action" data-action="select-all">
|
|
{{.locale.Tr "admin.notices.select_all"}}
|
|
</div>
|
|
<div class="item select action" data-action="deselect-all">
|
|
{{.locale.Tr "admin.notices.deselect_all"}}
|
|
</div>
|
|
<div class="item select action" data-action="inverse">
|
|
{{.locale.Tr "admin.notices.inverse_selection"}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<button class="ui small teal button" id="delete-selection" data-link="{{.Link}}/delete" data-redirect="{{.Link}}?page={{.Page.Paginater.Current}}">
|
|
{{.locale.Tr "admin.notices.delete_selected"}}
|
|
</button>
|
|
</th>
|
|
</tr>
|
|
</tfoot>
|
|
{{end}}
|
|
</table>
|
|
</div>
|
|
|
|
{{template "base/paginate" .}}
|
|
</div>
|
|
|
|
<div class="ui modal admin" id="detail-modal">
|
|
<div class="header">{{$.locale.Tr "admin.notices.view_detail_header"}}</div>
|
|
<div class="content">
|
|
<div class="sub header"></div>
|
|
<pre></pre>
|
|
</div>
|
|
</div>
|
|
|
|
{{template "admin/layout_footer" .}}
|