diff options
author | Unknown <joe2010xtmf@163.com> | 2014-05-07 12:09:30 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-05-07 12:09:30 -0400 |
commit | 7407f9caf3e0baf3f9b7894fab021356662eed17 (patch) | |
tree | f8a06f17b900657e4088973e31b24ba93125190e /templates/admin | |
parent | 8ca14e210959b9316a4eed6e127de1eb775fda74 (diff) | |
download | gitea-7407f9caf3e0baf3f9b7894fab021356662eed17.tar.gz gitea-7407f9caf3e0baf3f9b7894fab021356662eed17.zip |
Finish issue design
Diffstat (limited to 'templates/admin')
-rw-r--r-- | templates/admin/repos.tmpl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/admin/repos.tmpl b/templates/admin/repos.tmpl index 3c0f5e09f7..2c5e3d3b7d 100644 --- a/templates/admin/repos.tmpl +++ b/templates/admin/repos.tmpl @@ -17,6 +17,7 @@ <th>Name</th> <th>Private</th> <th>Watches</th> + <th>Issues</th> <th>Forks</th> <th>Created</th> </tr> @@ -29,6 +30,7 @@ <td><a href="/{{.UserName}}/{{.Name}}">{{.Name}}</a></td> <td><i class="fa fa{{if .IsPrivate}}-check{{end}}-square-o"></i></td> <td>{{.NumWatches}}</td> + <td>{{.NumIssues}}</td> <td>{{.NumForks}}</td> <td>{{DateFormat .Created "M d, Y"}}</td> </tr> |