diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-27 16:31:32 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-27 16:31:32 -0400 |
commit | 34f4af9ebf179dbb24a7da6091b4259d66a3c426 (patch) | |
tree | 41be4b8840f28b03dd12551d6403cd459b9ced10 /templates/issue/user.tmpl | |
parent | f76eb8a6662dd705f4c59fd59e583a315a1900d2 (diff) | |
download | gitea-34f4af9ebf179dbb24a7da6091b4259d66a3c426.tar.gz gitea-34f4af9ebf179dbb24a7da6091b4259d66a3c426.zip |
Working on issue and install page
Diffstat (limited to 'templates/issue/user.tmpl')
-rw-r--r-- | templates/issue/user.tmpl | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/templates/issue/user.tmpl b/templates/issue/user.tmpl index cf5e365dcf..edffde4f43 100644 --- a/templates/issue/user.tmpl +++ b/templates/issue/user.tmpl @@ -16,21 +16,20 @@ <div id="issue"> <div class="col-md-3 filter-list"> <ul class="list-unstyled"> - <li><a href="#" class="active">In your repositories <strong class="pull-right">10</strong></a></li> - <!-- <li><a href="#">Assigned to you</a></li> --> - <li><a href="#">Created by you</a></li> + <li><a href="/issues"{{if eq .ViewType "all"}} class="active"{{end}}>In your repositories <strong class="pull-right">{{.AllIssueCount}}</strong></a></li> <!-- <li><a href="#">Assigned to you</a></li> --> + <li><a href="/issues?type=created_by"{{if eq .ViewType "created_by"}} class="active"{{end}}>Created by you <strong class="pull-right">{{.CreatedByCount}}</strong></a></li> <li><hr/></li> - <li><a href="" class="sm">gogits/gogs <strong class="pull-right">12</strong></a></li> - <li><a href="" class="sm">gogits/session <strong class="pull-right">8</strong></a></li> - <li><a href="" class="sm">gogits/git <strong class="pull-right">2</strong></a></li> + {{range .Repos}} + <li><a href="" class="sm">{{.OwnerId}}/{{.Name}} <strong class="pull-right">{{.NumOpenIssues}}</strong></a></li> + {{end}} </ul> </div> <div class="col-md-9"> <div class="filter-option"> <div class="btn-group"> - <a class="btn btn-default active issue-open" href="#">27 Open</a> - <a class="btn btn-default issue-close" href="#">Close 128</a> + <a class="btn btn-default issue-open{{if not .IsShowClosed}} active{{end}}" href="/issues">{{.OpenIssueCount}} Open</a> + <a class="btn btn-default issue-close{{if .IsShowClosed}} active{{end}}" href="/issues?state=closed">{{.ClosedIssueCount}} Close</a> </div> </div> <div class="issues list-group"> |