diff options
Diffstat (limited to 'templates/admin/auths.tmpl')
-rw-r--r-- | templates/admin/auths.tmpl | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/templates/admin/auths.tmpl b/templates/admin/auths.tmpl deleted file mode 100644 index a0f7ba9790..0000000000 --- a/templates/admin/auths.tmpl +++ /dev/null @@ -1,43 +0,0 @@ -{{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>Edit</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" .}}
\ No newline at end of file |