mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 01:03:39 +01:00
40 lines
2.2 KiB
Cheetah
40 lines
2.2 KiB
Cheetah
{{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">
|
|
<li><a href="/{{.RepositoryLink}}/issues"{{if eq .ViewType "all"}} class="active"{{end}}>All Issues <strong class="pull-right">{{.IssueCount}}</strong></a></li>
|
|
<!-- <li><a href="#">Assigned to you</a></li> -->
|
|
<li><a href="/{{.RepositoryLink}}/issues?type=created_by"{{if eq .ViewType "created_by"}} class="active"{{end}}>Created by you <strong class="pull-right">{{.IssueCreatedCount}}</strong></a></li>
|
|
<!-- <li><a href="#">Mentioned</a></li> -->
|
|
</ul>
|
|
</div>
|
|
<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?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">
|
|
{{range .Issues}}
|
|
<div class="list-group-item issue-item" id="issue-{{.Id}}">
|
|
<span class="number pull-right">#{{.Index}}</span>
|
|
<h5 class="title"><a href="/{{$.RepositoryLink}}/issues/{{.Index}}">{{.Name}}</a></h5>
|
|
<p class="info">
|
|
<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>
|
|
</p>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}} |