summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author无闻 <joe2010xtmf@163.com>2014-11-28 15:28:08 -0500
committer无闻 <joe2010xtmf@163.com>2014-11-28 15:28:08 -0500
commit9adc8e9d3fe47d985d3bd8963f5803e8eff1c1eb (patch)
treebe5735f607d34f6ef5ea1310a4823c22e77aab82
parentbe54b4bf262ae96c1c188c7076bc2ec449ee084b (diff)
parent64d90a761b4d4de338f2b5119e5874c64b5ba82d (diff)
downloadgitea-9adc8e9d3fe47d985d3bd8963f5803e8eff1c1eb.tar.gz
gitea-9adc8e9d3fe47d985d3bd8963f5803e8eff1c1eb.zip
Merge pull request #683 from jcracknell/admin-repos-cols
Fix swapped issue/star columns in /admin/repos
-rw-r--r--templates/admin/repo/list.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/admin/repo/list.tmpl b/templates/admin/repo/list.tmpl
index 276fdff819..3a201fea0c 100644
--- a/templates/admin/repo/list.tmpl
+++ b/templates/admin/repo/list.tmpl
@@ -35,8 +35,8 @@
<td><a href="{{AppSubUrl}}/{{.Owner.Name}}/{{.Name}}">{{.Name}}</a></td>
<td><i class="fa fa{{if .IsPrivate}}-check{{end}}-square-o"></i></td>
<td>{{.NumWatches}}</td>
- <td>{{.NumIssues}}</td>
<td>{{.NumStars}}</td>
+ <td>{{.NumIssues}}</td>
<td>{{DateFormat .Created "M d, Y"}}</td>
</tr>
{{end}}
@@ -57,4 +57,4 @@
</div>
</div>
</div>
-{{template "ng/base/footer" .}} \ No newline at end of file
+{{template "ng/base/footer" .}}