diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | gogs.go | 2 | ||||
-rw-r--r-- | templates/.VERSION | 2 | ||||
-rw-r--r-- | templates/admin/org/list.tmpl | 2 |
4 files changed, 5 insertions, 3 deletions
@@ -3,7 +3,7 @@ Gogs - Go Git Service [ -##### Current version: 0.7.44 Beta +##### Current version: 0.7.44 | Web | UI | Preview | |:-------------:|:-------:|:-------:| @@ -18,7 +18,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.7.44.1211 Beta" +const APP_VER = "0.7.44.1212" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/templates/.VERSION b/templates/.VERSION index 4aa4da53..d91ea27a 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 890ceed3..0230f030 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> |