Skip to content

Commit

Permalink
gogs#2156 add edit org link in admin panel
Browse files Browse the repository at this point in the history
  • Loading branch information
unknwon committed Dec 12, 2015
1 parent e444a67 commit 4108c12
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra

![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true)

##### Current version: 0.7.44 Beta
##### Current version: 0.7.44

| Web | UI | Preview |
|:-------------:|:-------:|:-------:|
Expand Down
2 changes: 1 addition & 1 deletion gogs.go
Expand Up @@ -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())
Expand Down
2 changes: 1 addition & 1 deletion templates/.VERSION
@@ -1 +1 @@
0.7.44.1211 Beta
0.7.44.1212
2 changes: 2 additions & 0 deletions templates/admin/org/list.tmpl
Expand Up @@ -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>
Expand All @@ -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>
Expand Down

0 comments on commit 4108c12

Please sign in to comment.