aboutsummaryrefslogtreecommitdiffstats
path: root/templates/admin/users.tmpl
blob: b690e1771e1cb71ca828812adecd952a52057b5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{{template "base/head" .}}
{{template "base/navbar" .}}
<div id="gogs-body" class="container" data-page="admin">
    <div id="gogs-user-setting-nav" class="col-md-3">
        <ul class="list-group" data-init="tabs">
            <li class="list-group-item"><a href="/admin"><i class="fa fa-tachometer fa-lg"></i> Dashboard</a></li>
            <li class="list-group-item active"><a href="/admin/users"><i class="fa fa-users fa-lg"></i> Users</a></li>
            <li class="list-group-item"><a href="/admin/repos"><i class="fa fa-book fa-lg"></i> Repositories</a></li>
        </ul>
    </div>

    <div id="gogs-admin-container" class="col-md-9">
        <div class="panel panel-default">
            <div class="panel-heading">
                User Management
            </div>

            <div class="panel-body">
                <table class="table table-striped">
                    <thead>
                        <tr>
                            <th>Id</th>
                            <th>Name</th>
                            <th>E-mail</th>
                            <th>Actived</th>
                            <th>Admin</th>
                            <th>Repos</th>
                            <th>Join</th>
                        </tr>
                    </thead>
                    <tbody>
                        {{range .Users}}
                        <tr>
                            <td>{{.Id}}</td>
                            <td><a href="/user/{{.Name}}">{{.Name}}</a></td>
                            <td>{{.Email}}</td>
                            <td><i class="fa fa{{if .IsActive}}-check{{end}}-square-o"></i></td>
                            <td><i class="fa fa{{if .IsAdmin}}-check{{end}}-square-o"></i></td>
                            <td>{{.NumRepos}}</td>
                            <td>{{DateFormat .Created "M d, Y"}}</td>
                        </tr>
                        {{end}}
                    </tbody>
                </table>
            </div>
        </div>
    </div>
</div>
{{template "base/footer" .}}