2014-03-25 16:00:26 +01:00
{{ template "base/head" . }}
{{ template "base/navbar" . }}
{{ template "repo/nav" . }}
{{ template "repo/toolbar" . }}
< div id = "body" class = "container" >
< 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 = " {{ .RepoLink }} /issues?state= {{ .State }} " {{ if eq .ViewType "all" }} class = "active" {{ end }} > All Issues < strong class = "pull-right" > {{ ..IssueStats.AllCount }} </ strong ></ a ></ li >
< li >< a href = " {{ .RepoLink }} /issues?type=assigned&state= {{ .State }} " {{ if eq .ViewType "assigned" }} class = "active" {{ end }} > Assigned to you < strong class = "pull-right" > {{ .IssueStats.AssignCount }} </ strong ></ a ></ li >
< li >< a href = " {{ .RepoLink }} /issues?type=created_by&state= {{ .State }} " {{ if eq .ViewType "created_by" }} class = "active" {{ end }} > Created by you < strong class = "pull-right" > {{ .IssueStats.CreateCount }} </ strong ></ a ></ li >
< li >< a href = " {{ .RepoLink }} /issues?type=mentioned&state= {{ .State }} " {{ if eq .ViewType "mentioned" }} class = "active" {{ end }} > Mentioning you < strong class = "pull-right" > {{ .IssueStats.MentionCount }} </ strong ></ a ></ li >
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 18:09:30 +02:00
< a class = "btn btn-default issue-open {{ if not .IsShowClosed }} active {{ end }} " href = " {{ .RepoLink }} /issues?type= {{ .ViewType }} " > {{ ..IssueStats.OpenCount }} Open</ a >
< a class = "btn btn-default issue-close {{ if .IsShowClosed }} active {{ end }} " href = " {{ .RepoLink }} /issues?type= {{ .ViewType }} &state=closed" > {{ .IssueStats.ClosedCount }} Closed</ a >
2014-03-25 16:00:26 +01:00
< / div >
< / div >
2014-03-25 17:12:27 +01:00
< div class = "issues list-group" >
2014-05-07 18:09:30 +02:00
{{ range .Issues }}{{ if .Poster }}
2014-05-07 22:51:14 +02:00
< div class = "list-group-item issue-item {{ if not .IsRead }} unread {{ end }} " id = "issue- {{ .Id }} " >
2014-03-25 19:04:57 +01:00
< span class = "number pull-right" > #{{ .Index }} </ span >
2014-03-30 04:13:02 +02:00
< h5 class = "title" >< a href = " {{ $.RepoLink }} /issues/ {{ .Index }} " > {{ .Name }} </ a ></ h5 >
2014-03-25 16:00:26 +01:00
< p class = "info" >
2014-03-25 19:04:57 +01:00
< span class = "author" >< img class = "avatar" src = " {{ .Poster.AvatarLink }} " alt = "" width = "20" />
< a href = "/user/ {{ .Poster.Name }} " > {{ .Poster.Name }} </ a ></ span >
< span class = "time" > {{ TimeSince .Created }} </ span >
< span class = "comment" >< i class = "fa fa-comments" ></ i > {{ .NumComments }} </ span >
2014-03-25 16:00:26 +01:00
< / p >
< / div >
2014-05-07 18:09:30 +02:00
{{ end }}{{ end }}
2014-03-25 19:04:57 +01:00
< / div >
2014-03-25 16:00:26 +01:00
< / div >
< / div >
< / div >
< / div >
2014-03-30 04:13:02 +02:00
{{ template "base/footer" . }}