diff options
author | Unknwon <u@gogs.io> | 2015-12-12 15:47:59 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-12-12 15:47:59 -0500 |
commit | 4108c12092db34cf80e53c6e7124615b1acb6c80 (patch) | |
tree | 8a1504627ff4f04d0bbfbc7ce2d7a5487a84b227 /templates | |
parent | e444a67d59a4fa45a77ba3ab0785869072db8b0a (diff) | |
download | gitea-4108c12092db34cf80e53c6e7124615b1acb6c80.tar.gz gitea-4108c12092db34cf80e53c6e7124615b1acb6c80.zip |
#2156 add edit org link in admin panel
Diffstat (limited to 'templates')
-rw-r--r-- | templates/.VERSION | 2 | ||||
-rw-r--r-- | templates/admin/org/list.tmpl | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/templates/.VERSION b/templates/.VERSION index 4aa4da533b..d91ea27ada 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.7.44.1211 Beta
\ No newline at end of file +0.7.44.1212
\ No newline at end of file diff --git a/templates/admin/org/list.tmpl b/templates/admin/org/list.tmpl index 890ceed3a2..0230f03021 100644 --- a/templates/admin/org/list.tmpl +++ b/templates/admin/org/list.tmpl @@ -18,6 +18,7 @@ <th>{{.i18n.Tr "admin.orgs.members"}}</th> <th>{{.i18n.Tr "admin.users.repos"}}</th> <th>{{.i18n.Tr "admin.users.created"}}</th> + <th>{{.i18n.Tr "admin.users.edit"}}</th> </tr> </thead> <tbody> @@ -29,6 +30,7 @@ <td>{{.NumMembers}}</td> <td>{{.NumRepos}}</td> <td><span title="{{DateFmtLong .Created}}">{{DateFmtShort .Created}}</span></td> + <td><a href="{{AppSubUrl}}/org/{{.Name}}/settings"><i class="fa fa-pencil-square-o"></i></a></td> </tr> {{end}} </tbody> |