diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-21 06:15:58 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-21 06:15:58 -0400 |
commit | 30618b271aab40d29a6d34cb4e06c8d28fa74d18 (patch) | |
tree | 975ea9f2770c20f7b8b8f5ca2fffaf9deb95b0a5 /templates/admin/users.tmpl | |
parent | e67653cf13857f671de9bf6279453f99cdd60d11 (diff) | |
download | gitea-30618b271aab40d29a6d34cb4e06c8d28fa74d18.tar.gz gitea-30618b271aab40d29a6d34cb4e06c8d28fa74d18.zip |
Add admin edit user
Diffstat (limited to 'templates/admin/users.tmpl')
-rw-r--r-- | templates/admin/users.tmpl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/admin/users.tmpl b/templates/admin/users.tmpl index d82f04b812..dec5c18954 100644 --- a/templates/admin/users.tmpl +++ b/templates/admin/users.tmpl @@ -20,6 +20,7 @@ <th>Admin</th> <th>Repos</th> <th>Join</th> + <th>Edit</th> </tr> </thead> <tbody> @@ -32,6 +33,7 @@ <td><i class="fa fa{{if .IsAdmin}}-check{{end}}-square-o"></i></td> <td>{{.NumRepos}}</td> <td>{{DateFormat .Created "M d, Y"}}</td> + <td><a href="/admin/users/{{.Id}}"><i class="fa fa-pencil-square-o"></i></a></td> </tr> {{end}} </tbody> |