diff options
author | Unknwon <u@gogs.io> | 2015-12-05 01:09:14 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-12-05 01:09:14 -0500 |
commit | f41360d864bfa3fb850d669a0a8321820fc550de (patch) | |
tree | 5450285739bd0be98258474f45d62991dd1429ee /templates | |
parent | e82ee40e9e667797099edc05ec1b774f65310464 (diff) | |
download | gitea-f41360d864bfa3fb850d669a0a8321820fc550de.tar.gz gitea-f41360d864bfa3fb850d669a0a8321820fc550de.zip |
#2052 advanced select ops for system notices
Diffstat (limited to 'templates')
-rw-r--r-- | templates/.VERSION | 2 | ||||
-rw-r--r-- | templates/admin/notice.tmpl | 58 |
2 files changed, 49 insertions, 11 deletions
diff --git a/templates/.VERSION b/templates/.VERSION index 716a71b08a..bf2cb93053 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.30.1204 Beta
\ No newline at end of file +0.7.31.1205 Beta
\ No newline at end of file diff --git a/templates/admin/notice.tmpl b/templates/admin/notice.tmpl index c2e6cd0ea2..3321dd1469 100644 --- a/templates/admin/notice.tmpl +++ b/templates/admin/notice.tmpl @@ -1,5 +1,5 @@ {{template "base/head" .}} -<div class="admin user"> +<div class="admin notice"> <div class="ui container"> <div class="ui grid"> {{template "admin/navbar" .}} @@ -7,32 +7,62 @@ {{template "base/alert" .}} <h4 class="ui top attached header"> {{.i18n.Tr "admin.notices.system_notice_list"}} ({{.i18n.Tr "admin.total" .Total}}) - <div class="ui right"> - <a class="ui red tiny button" href="{{AppSubUrl}}/admin/notices/empty">{{.i18n.Tr "admin.notices.empty_all"}}</a> - </div> </h4> <div class="ui attached table segment"> - <table class="ui very basic striped table"> + <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>{{.i18n.Tr "admin.users.created"}}</th> + <th width="100px">{{.i18n.Tr "admin.users.created"}}</th> <th>{{.i18n.Tr "admin.notices.op"}}</th> </tr> </thead> <tbody> {{range .Notices}} <tr> - <td>{{.Id}}</td> + <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><span>{{.Description}}</span></td> - <td>{{.Created}}</td> - <td><a href="{{AppSubUrl}}/admin/notices/{{.Id}}/delete"><i class="fa fa-trash-o text-red"></i></a></td> + <td>{{SubStr .Description 0 120}}...</td> + <td><span class="poping up" data-content="{{.Created}}" data-variation="inverted tiny">{{DateFmtShort .Created}}</span></td> + <td><a href="#"><i class="browser icon view-detail" data-content="{{.Description}}"></i></a></td> </tr> {{end}} </tbody> + <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> + </div> + <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> + </div> + <div class="ui small teal button" id="delete-selection" data-link="{{.Link}}/delete" data-redirect="{{.Link}}?page={{.Page.Current}}"> + {{.i18n.Tr "admin.notices.delete_selected"}} + </div> + </th> + </tr> + </tfoot> </table> </div> @@ -63,4 +93,12 @@ </div> </div> </div> + +<div class="ui modal" id="detail-modal"> + <i class="close icon"></i> + <div class="header">{{$.i18n.Tr "admin.notices.view_detail_header"}}</div> + <div class="content"> + <p></p> + </div> +</div> {{template "base/footer" .}} |