mirror of
https://github.com/samsonjs/retrogit.git
synced 2026-03-25 09:25:49 +00:00
36 lines
863 B
HTML
36 lines
863 B
HTML
{{define "title"}}Users Admin{{end}}
|
|
|
|
{{define "body"}}
|
|
|
|
<link rel="stylesheet" href="/static/admin.css">
|
|
|
|
<table id="users-table">
|
|
<thead>
|
|
<tr>
|
|
<th>User ID</th>
|
|
<th>Username</th>
|
|
<th>Email</th>
|
|
<th>Frequency</th>
|
|
<th>Repositories</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range .Users}}
|
|
<tr>
|
|
<td><a href="{{routeUrl "digest-admin"}}?user_id={{.GitHubUserId}}">{{.Account.GitHubUserId}}</a></td>
|
|
<td>{{template "user" .User}}</td>
|
|
<td>{{.EmailAddress}}</td>
|
|
<td>{{.Account.Frequency}}</td>
|
|
<td>
|
|
{{if .ReposError}}
|
|
{{.ReposError}}
|
|
{{else}}
|
|
{{len .Repos.AllRepos}} from {{len .Repos.OtherUserRepos}} other users and {{len .Repos.OrgRepos}} organizations
|
|
{{end}}
|
|
</td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
|
|
{{end}}
|