summaryrefslogtreecommitdiffstats
path: root/templates/admin/auths.tmpl
blob: 87baeafd6262641b526428e6d7cf8eb0e8d5fab4 (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
{{template "base/head" .}}
{{template "base/navbar" .}}
<div id="body" class="container" data-page="admin">
    {{template "admin/nav" .}}
    <div id="admin-container" class="col-md-10">
        <div class="panel panel-default">
            <div class="panel-heading">
                Authentication Management
            </div>

            <div class="panel-body">
                <a href="/admin/auths/new" class="btn btn-primary">New Auth Source</a>
                <table class="table table-striped">
                    <thead>
                        <tr>
                            <th>Id</th>
                            <th>Name</th>
                            <th>Type</th>
                            <th>Actived</th>
                            <th>Updated</th>
                            <th>Created</th>
                            <th>Operation</th>
                        </tr>
                    </thead>
                    <tbody>
                        {{range .Sources}}
                        <tr>
                            <td>{{.Id}}</td>
                            <td><a href="/admin/auths/{{.Id}}">{{.Name}}</a></td>
                            <td>{{.TypeString}}</td>
                            <td><i class="fa fa{{if .IsActived}}-check{{end}}-square-o"></i></td>
                            <td>{{DateFormat .Updated "M d, Y"}}</td>
                            <td>{{DateFormat .Created "M d, Y"}}</td>
                            <td><a href="/admin/auths/{{.Id}}"><i class="fa fa-pencil-square-o"></i></a></td>
                        </tr>
                        {{end}}
                    </tbody>
                </table>
            </div>
        </div>
    </div>
</div>
{{template "base/footer" .}}