2014-03-25 16:00:26 +01:00
{{ template "base/head" . }}
{{ template "base/navbar" . }}
< div id = "body-nav" >
< div class = "container" >
< ul class = "nav nav-pills pull-right" >
2014-06-25 06:44:48 +02:00
< li > < a href = "/" > News Feed< / a > < / li >
2014-03-25 16:00:26 +01:00
< li class = "active" > < a href = "/issues" > Issues< / a > < / li >
<!-- <li><a href="/pulls">Pull Requests</a></li>
< li > < a href = "/stars" > Stars< / a > < / li > -->
< / ul >
< h3 > Your Issues< / h3 >
< / div >
< / div >
2014-06-25 06:44:48 +02:00
2014-03-25 16:00:26 +01:00
< div id = "body" class = "container" data-page = "user" >
{{ if .HasInfo }} < div class = "alert alert-info" > {{ .InfoMsg }} </ div > {{ end }}
< div id = "issue" >
< div class = "col-md-3 filter-list" >
< ul class = "list-unstyled" >
2014-05-07 18:09:30 +02:00
< li >< a href = "/issues?state= {{ .State }} &repoid= {{ .RepoId }} " {{ if eq .ViewType "all" }} class = "active" {{ end }} > In your repositories < strong class = "pull-right" > {{ .IssueStats.AllCount }} </ strong ></ a ></ li >
< li >< a href = "/issues?type=assigned&repoid= {{ .RepoId }} &state= {{ .State }} " {{ if eq .ViewType "assigned" }} class = "active" {{ end }} > Assigned to you < strong class = "pull-right" > {{ .IssueStats.AssignCount }} </ strong ></ a ></ li >
< li >< a href = "/issues?type=created_by&repoid= {{ .RepoId }} &state= {{ .State }} " {{ if eq .ViewType "created_by" }} class = "active" {{ end }} > Created by you < strong class = "pull-right" > {{ .IssueStats.CreateCount }} </ strong ></ a ></ li >
2014-03-25 16:00:26 +01:00
< li > < hr / > < / li >
2014-03-27 21:31:32 +01:00
{{ range .Repos }}
2014-05-07 22:51:14 +02:00
< li >< a href = "/issues?type= {{ $.ViewType }}{{ if eq $.RepoId .Id }}{{ else }} &repoid= {{ .Id }}{{ end }} &state= {{ $.State }} " class = "sm {{ if eq $.RepoId .Id }} active {{ end }} " > {{ $.SignedUser.Name }} /{{ .Name }} < strong class = "pull-right" > {{ if $.IsShowClosed }}{{ .NumClosedIssues }}{{ else }}{{ .NumOpenIssues }}{{ end }} </ strong ></ a ></ li >
2014-03-27 21:31:32 +01:00
{{ end }}
2014-03-25 16:00:26 +01:00
< / ul >
< / div >
< div class = "col-md-9" >
< div class = "filter-option" >
< div class = "btn-group" >
2014-05-07 22:51:14 +02:00
< a class = "btn btn-default issue-open {{ if not .IsShowClosed }} active {{ end }} " href = "/issues?type= {{ .ViewType }} &repoid= {{ .RepoId }} " > Open</ a >
< a class = "btn btn-default issue-close {{ if .IsShowClosed }} active {{ end }} " href = "/issues?type= {{ .ViewType }} &repoid= {{ .RepoId }} &state=closed" > Closed</ a >
2014-03-25 16:00:26 +01:00
< / div >
< / div >
< div class = "issues list-group" >
2014-05-07 22:51:14 +02:00
{{ range .Issues }}{{ if . }}
2014-03-27 20:24:11 +01:00
< div class = "list-group-item issue-item" id = "issue- {{ .Id }} " >
< span class = "number pull-right" > #{{ .Index }} </ span >
2014-05-13 22:37:09 +02:00
< h5 class = "title" >< a href = "/ {{ .Repo.Owner.Name }} / {{ .Repo.Name }} /issues/ {{ .Index }} " > {{ .Name }} </ a ></ h5 >
2014-03-25 16:00:26 +01:00
< p class = "info" >
2014-03-27 20:24:11 +01:00
< span class = "author" >< img class = "avatar" src = " {{ .Poster.AvatarLink }} " alt = "" width = "20" />
< a href = "/user/ {{ .Poster.Name }} " > {{ .Poster.Name }} </ a ></ span >
2014-07-26 08:28:04 +02:00
< span class = "time" > {{ TimeSince .Created $.Lang }} </ span >
2014-03-27 20:24:11 +01:00
< span class = "comment" >< i class = "fa fa-comments" ></ i > {{ .NumComments }} </ span >
2014-03-25 16:00:26 +01:00
< / p >
< / div >
2014-05-07 22:51:14 +02:00
{{ end }}{{ end }}
2014-03-25 16:00:26 +01:00
< / div >
< / div >
< / div >
< / div >
{{ template "base/footer" . }}