2015-09-12 06:12:26 +05:30
|
|
|
{{template "base/head" .}}
|
2020-12-01 09:30:14 +05:30
|
|
|
<div class="page-content admin user">
|
2017-03-16 04:09:38 +05:30
|
|
|
{{template "admin/navbar" .}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<div class="ui container">
|
2017-03-16 04:09:38 +05:30
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "admin.users.user_manage_panel"}} ({{.i18n.Tr "admin.total" .Total}})
|
|
|
|
<div class="ui right">
|
2019-12-04 07:09:58 +05:30
|
|
|
<a class="ui blue tiny button" href="{{AppSubUrl}}/admin/users/new">{{.i18n.Tr "admin.users.new_account"}}</a>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2017-03-16 04:09:38 +05:30
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
|
|
|
{{template "admin/base/search" .}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2017-03-16 04:09:38 +05:30
|
|
|
<div class="ui attached table segment">
|
|
|
|
<table class="ui very basic striped table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2020-06-25 03:53:05 +05:30
|
|
|
<th data-sortt-asc="oldest" data-sortt-desc="newest">ID{{SortArrow "oldest" "newest" .SortType false}}</th>
|
|
|
|
<th data-sortt-asc="alphabetically" data-sortt-desc="reversealphabetically" data-sortt-default="true">
|
|
|
|
{{.i18n.Tr "admin.users.name"}}
|
|
|
|
{{SortArrow "alphabetically" "reversealphabetically" $.SortType true}}
|
|
|
|
</th>
|
2017-03-16 04:09:38 +05:30
|
|
|
<th>{{.i18n.Tr "email"}}</th>
|
|
|
|
<th>{{.i18n.Tr "admin.users.activated"}}</th>
|
|
|
|
<th>{{.i18n.Tr "admin.users.admin"}}</th>
|
2020-01-13 23:03:46 +05:30
|
|
|
<th>{{.i18n.Tr "admin.users.restricted"}}</th>
|
2020-08-20 07:23:49 +05:30
|
|
|
<th>{{.i18n.Tr "admin.users.2fa"}}</th>
|
2017-03-16 04:09:38 +05:30
|
|
|
<th>{{.i18n.Tr "admin.users.repos"}}</th>
|
|
|
|
<th>{{.i18n.Tr "admin.users.created"}}</th>
|
2020-06-25 03:53:05 +05:30
|
|
|
<th data-sortt-asc="recentupdate" data-sortt-desc="leastupdate">
|
|
|
|
{{.i18n.Tr "admin.users.last_login"}}
|
|
|
|
{{SortArrow "recentupdate" "leastupdate" $.SortType false}}
|
|
|
|
</th>
|
2017-03-16 04:09:38 +05:30
|
|
|
<th>{{.i18n.Tr "admin.users.edit"}}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{range .Users}}
|
|
|
|
<tr>
|
|
|
|
<td>{{.ID}}</td>
|
|
|
|
<td><a href="{{AppSubUrl}}/{{.Name}}">{{.Name}}</a></td>
|
|
|
|
<td><span class="text truncate email">{{.Email}}</span></td>
|
2020-12-10 00:33:19 +05:30
|
|
|
<td>{{if .IsActive}}{{svg "octicon-check"}}{{else}}{{svg "octicon-x"}}{{end}}</td>
|
|
|
|
<td>{{if .IsAdmin}}{{svg "octicon-check"}}{{else}}{{svg "octicon-x"}}{{end}}</td>
|
|
|
|
<td>{{if .IsRestricted}}{{svg "octicon-check"}}{{else}}{{svg "octicon-x"}}{{end}}</td>
|
|
|
|
<td>{{if index $.UsersTwoFaStatus .ID}}{{svg "octicon-check"}}{{else}}{{svg "octicon-x"}}{{end}}</td>
|
2017-03-16 04:09:38 +05:30
|
|
|
<td>{{.NumRepos}}</td>
|
2017-12-11 10:07:04 +05:30
|
|
|
<td><span title="{{.CreatedUnix.FormatLong}}">{{.CreatedUnix.FormatShort}}</span></td>
|
2017-03-16 04:09:38 +05:30
|
|
|
{{if .LastLoginUnix}}
|
2017-12-11 10:07:04 +05:30
|
|
|
<td><span title="{{.LastLoginUnix.FormatLong}}">{{.LastLoginUnix.FormatShort}}</span></td>
|
2017-03-16 04:09:38 +05:30
|
|
|
{{else}}
|
|
|
|
<td><span>{{$.i18n.Tr "admin.users.never_login"}}</span></td>
|
|
|
|
{{end}}
|
2020-12-10 00:33:19 +05:30
|
|
|
<td><a href="{{$.Link}}/{{.ID}}">{{svg "octicon-pencil"}}</a></td>
|
2017-03-16 04:09:38 +05:30
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{template "base/paginate" .}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2014-08-29 13:02:52 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "base/footer" .}}
|