retrogit/app/templates/users-admin.html
2014-11-16 21:50:18 -08:00

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}}