diff options
author | Ethan Koenig <etk39@cornell.edu> | 2017-08-02 22:09:16 -0700 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-08-03 13:09:16 +0800 |
commit | 7e0654bd9e4f90fc156884afd88cb82ad8df86a8 (patch) | |
tree | 03d320ee4a46d003ef5db801c1740b8d7ed9b966 /templates | |
parent | f29458bd3a20d2d89638d5031d801c161f456374 (diff) | |
download | gitea-7e0654bd9e4f90fc156884afd88cb82ad8df86a8.tar.gz gitea-7e0654bd9e4f90fc156884afd88cb82ad8df86a8.zip |
Fix counts on issues dashboard (#2215)
* Fix counts on issues dashboard
* setupSess -> setupSession
* Unit test
* Load repo owners for issues
Diffstat (limited to 'templates')
-rw-r--r-- | templates/user/dashboard/issues.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/user/dashboard/issues.tmpl b/templates/user/dashboard/issues.tmpl index a146250c18..954b868214 100644 --- a/templates/user/dashboard/issues.tmpl +++ b/templates/user/dashboard/issues.tmpl @@ -23,7 +23,7 @@ {{range .Repos}} <a class="{{if eq $.RepoID .ID}}ui basic blue button{{end}} repo name item" href="{{$.Link}}?type={{$.ViewType}}{{if not (eq $.RepoID .ID)}}&repo={{.ID}}{{end}}&sort={{$.SortType}}&state={{$.State}}"> <span class="text truncate">{{.FullName}}</span> - <div class="floating ui {{if $.IsShowClosed}}red{{else}}green{{end}} label">{{if $.IsShowClosed}}{{if $.PageIsPulls}}{{.NumClosedPulls}}{{else}}{{.NumClosedIssues}}{{end}}{{else}}{{if $.PageIsPulls}}{{.NumOpenPulls}}{{else}}{{.NumOpenIssues}}{{end}}{{end}}</div> + <div class="floating ui {{if $.IsShowClosed}}red{{else}}green{{end}} label">{{index $.Counts .ID}}</div> </a> {{end}} </div> |