2023-04-23 18:21:21 +08:00
|
|
|
{{template "admin/layout_head" (dict "ctxData" . "pageClass" "admin authentication")}}
|
|
|
|
|
<div class="admin-setting-content">
|
2017-03-15 22:39:38 +00:00
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 20:42:40 +08:00
|
|
|
{{ctx.Locale.Tr "admin.auths.auth_manage_panel"}} ({{ctx.Locale.Tr "admin.total" .Total}})
|
2017-03-15 22:39:38 +00:00
|
|
|
<div class="ui right">
|
2024-10-10 12:56:49 +08:00
|
|
|
<a class="ui primary tiny button" href="{{AppSubUrl}}/-/admin/auths/new">{{ctx.Locale.Tr "admin.auths.new"}}</a>
|
2015-09-10 15:45:03 -04:00
|
|
|
</div>
|
2017-03-15 22:39:38 +00:00
|
|
|
</h4>
|
|
|
|
|
<div class="ui attached table segment">
|
2026-02-11 02:58:56 +01:00
|
|
|
<table class="ui very basic table unstackable">
|
2017-03-15 22:39:38 +00:00
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>ID</th>
|
2023-09-25 10:56:50 +02:00
|
|
|
<th>{{ctx.Locale.Tr "admin.auths.name"}}</th>
|
|
|
|
|
<th>{{ctx.Locale.Tr "admin.auths.type"}}</th>
|
|
|
|
|
<th>{{ctx.Locale.Tr "admin.auths.enabled"}}</th>
|
|
|
|
|
<th>{{ctx.Locale.Tr "admin.auths.updated"}}</th>
|
|
|
|
|
<th>{{ctx.Locale.Tr "admin.users.created"}}</th>
|
|
|
|
|
<th>{{ctx.Locale.Tr "admin.users.edit"}}</th>
|
2017-03-15 22:39:38 +00:00
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
{{range .Sources}}
|
|
|
|
|
<tr>
|
|
|
|
|
<td>{{.ID}}</td>
|
2024-10-10 12:56:49 +08:00
|
|
|
<td><a href="{{AppSubUrl}}/-/admin/auths/{{.ID}}">{{.Name}}</a></td>
|
2017-03-15 22:39:38 +00:00
|
|
|
<td>{{.TypeName}}</td>
|
2024-06-11 21:07:10 +08:00
|
|
|
<td>{{svg (Iif .IsActive "octicon-check" "octicon-x")}}</td>
|
2024-11-04 19:30:00 +08:00
|
|
|
<td>{{DateUtils.AbsoluteShort .UpdatedUnix}}</td>
|
|
|
|
|
<td>{{DateUtils.AbsoluteShort .CreatedUnix}}</td>
|
2024-10-10 12:56:49 +08:00
|
|
|
<td><a href="{{AppSubUrl}}/-/admin/auths/{{.ID}}">{{svg "octicon-pencil"}}</a></td>
|
2017-03-15 22:39:38 +00:00
|
|
|
</tr>
|
2025-02-09 00:13:41 +08:00
|
|
|
{{else}}
|
|
|
|
|
<tr><td class="tw-text-center" colspan="7">{{ctx.Locale.Tr "no_results_found"}}</td></tr>
|
2017-03-15 22:39:38 +00:00
|
|
|
{{end}}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-04-23 18:21:21 +08:00
|
|
|
{{template "admin/layout_footer" .}}
|