diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-27 19:42:10 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-27 19:42:10 -0400 |
commit | eb6021f73f270b6fad937432964ab15f42e8f0d9 (patch) | |
tree | 4b6d560c60e41cfec3a20a9ecf6144c27a3353df /templates/issue/list.tmpl | |
parent | 34f4af9ebf179dbb24a7da6091b4259d66a3c426 (diff) | |
download | gitea-eb6021f73f270b6fad937432964ab15f42e8f0d9.tar.gz gitea-eb6021f73f270b6fad937432964ab15f42e8f0d9.zip |
Fix issue pages URL params
Diffstat (limited to 'templates/issue/list.tmpl')
-rw-r--r-- | templates/issue/list.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/issue/list.tmpl b/templates/issue/list.tmpl index 39a4af5691..7622a4c172 100644 --- a/templates/issue/list.tmpl +++ b/templates/issue/list.tmpl @@ -15,8 +15,8 @@ <div class="col-md-9"> <div class="filter-option"> <div class="btn-group"> - <a class="btn btn-default issue-open{{if not .IsShowClosed}} active{{end}}" href="/{{.RepositoryLink}}/issues">{{.OpenCount}} Open</a> - <a class="btn btn-default issue-close{{if .IsShowClosed}} active{{end}}" href="/{{.RepositoryLink}}/issues?state=closed">{{.ClosedCount}} Closed</a> + <a class="btn btn-default issue-open{{if not .IsShowClosed}} active{{end}}" href="/{{.RepositoryLink}}/issues?type={{.ViewType}}">{{.OpenCount}} Open</a> + <a class="btn btn-default issue-close{{if .IsShowClosed}} active{{end}}" href="/{{.RepositoryLink}}/issues?state=closed&type={{.ViewType}}">{{.ClosedCount}} Closed</a> </div> </div> <div class="issues list-group"> |