diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2014-05-05 16:40:25 +0800 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2014-05-05 16:40:25 +0800 |
commit | 1652dd5068f2f3ae1851bc2321832c88af85d570 (patch) | |
tree | d8bee76f5c1016c7ee432334fe02390387b9a8e9 /templates/admin/auths.tmpl | |
parent | 79ea34e70ebe989f1a5f8fbd71cfe3109c6f8a58 (diff) | |
download | gitea-1652dd5068f2f3ae1851bc2321832c88af85d570.tar.gz gitea-1652dd5068f2f3ae1851bc2321832c88af85d570.zip |
basic authentications
Diffstat (limited to 'templates/admin/auths.tmpl')
-rw-r--r-- | templates/admin/auths.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/admin/auths.tmpl b/templates/admin/auths.tmpl index 813e24ad0c..87baeafd62 100644 --- a/templates/admin/auths.tmpl +++ b/templates/admin/auths.tmpl @@ -27,11 +27,11 @@ <tr> <td>{{.Id}}</td> <td><a href="/admin/auths/{{.Id}}">{{.Name}}</a></td> - <td>{{.Type}}</td> - <td>{{.Actived}}</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/users/{{.Id}}"><i class="fa fa-pencil-square-o"></i></a></td> + <td><a href="/admin/auths/{{.Id}}"><i class="fa fa-pencil-square-o"></i></a></td> </tr> {{end}} </tbody> |