mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
155 lines
9.3 KiB
155 lines
9.3 KiB
{{template "base/head" .}} |
|
<div class="repository"> |
|
{{template "repo/header" .}} |
|
<div class="ui container"> |
|
<div class="navbar"> |
|
{{template "repo/issue/navbar" .}} |
|
<div class="ui right"> |
|
{{if .PageIsIssueList}} |
|
<a class="ui green button" href="{{.RepoLink}}/issues/new">{{.i18n.Tr "repo.issues.new"}}</a> |
|
{{else}} |
|
<a class="ui green button {{if not .PullRequestCtx.Allowed}}disabled{{end}}" href="{{.RepoLink}}/compare/{{.Repository.DefaultBranch}}...{{.PullRequestCtx.HeadInfo}}">{{.i18n.Tr "repo.pulls.new"}}</a> |
|
{{end}} |
|
</div> |
|
</div> |
|
<div class="ui divider"></div> |
|
<div class="ui tiny basic status buttons"> |
|
<a class="ui {{if not .IsShowClosed}}green active{{end}} basic button" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> |
|
<i class="octicon octicon-issue-opened"></i> |
|
{{.i18n.Tr "repo.issues.open_tab" .IssueStats.OpenCount}} |
|
</a> |
|
<a class="ui {{if .IsShowClosed}}red active{{end}} basic button" href="{{$.Link}}?type={{.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&milestone={{.MilestoneID}}&assignee={{.AssigneeID}}"> |
|
<i class="octicon octicon-issue-closed"></i> |
|
{{.i18n.Tr "repo.issues.close_tab" .IssueStats.ClosedCount}} |
|
</a> |
|
</div> |
|
<div class="ui right floated secondary filter menu"> |
|
<!-- Label --> |
|
<div class="ui {{if not .Labels}}disabled{{end}} dropdown jump item"> |
|
<span class="text"> |
|
{{.i18n.Tr "repo.issues.filter_label"}} |
|
<i class="dropdown icon"></i> |
|
</span> |
|
<div class="menu"> |
|
<a class="item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_label_no_select"}}</a> |
|
{{range .Labels}} |
|
<a class="item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.ID}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}"><span class="octicon {{if eq $.SelectLabels .ID}}octicon-check{{end}}"></span><span class="label color" style="background-color: {{.Color}}"></span> {{.Name}}</a> |
|
{{end}} |
|
</div> |
|
</div> |
|
|
|
<!-- Milestone --> |
|
<div class="ui {{if not .Milestones}}disabled{{end}} dropdown jump item"> |
|
<span class="text"> |
|
{{.i18n.Tr "repo.issues.filter_milestone"}} |
|
<i class="dropdown icon"></i> |
|
</span> |
|
<div class="menu"> |
|
<a class="item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_milestone_no_select"}}</a> |
|
{{range .Milestones}} |
|
<a class="{{if eq $.MilestoneID .ID}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{.ID}}&assignee={{$.AssigneeID}}">{{.Name}}</a> |
|
{{end}} |
|
</div> |
|
</div> |
|
|
|
<!-- Assignee --> |
|
<div class="ui {{if not .Assignees}}disabled{{end}} dropdown jump item"> |
|
<span class="text"> |
|
{{.i18n.Tr "repo.issues.filter_assignee"}} |
|
<i class="dropdown icon"></i> |
|
</span> |
|
<div class="menu"> |
|
<a class="item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}">{{.i18n.Tr "repo.issues.filter_assginee_no_select"}}</a> |
|
{{range .Assignees}} |
|
<a class="{{if eq $.AssigneeID .Id}}active selected{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{.Id}}"><img src="{{.AvatarLink}}"> {{.Name}}</a> |
|
{{end}} |
|
</div> |
|
</div> |
|
|
|
<!-- Type --> |
|
<div class="ui dropdown type jump item"> |
|
<span class="text"> |
|
{{.i18n.Tr "repo.issues.filter_type"}} |
|
<i class="dropdown icon"></i> |
|
</span> |
|
<div class="menu"> |
|
<a class="{{if eq .ViewType "all"}}active{{end}} item" href="{{$.Link}}?type=all&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.all_issues"}}</a> |
|
<a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="{{$.Link}}?type=assigned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}">{{.i18n.Tr "repo.issues.filter_type.assigned_to_you"}}</a> |
|
<a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="{{$.Link}}?type=created_by&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.created_by_you"}}</a> |
|
<a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="{{$.Link}}?type=mentioned&sort={{$.SortType}}&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_type.mentioning_you"}}</a> |
|
</div> |
|
</div> |
|
|
|
<!-- Sort --> |
|
<div class="ui dropdown type jump item"> |
|
<span class="text"> |
|
{{.i18n.Tr "repo.issues.filter_sort"}} |
|
<i class="dropdown icon"></i> |
|
</span> |
|
<div class="menu"> |
|
<a class="{{if or (eq .SortType "latest") (not .SortType)}}active{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort=latest&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.latest"}}</a> |
|
<a class="{{if eq .SortType "oldest"}}active{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort=oldest&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.oldest"}}</a> |
|
<a class="{{if eq .SortType "recentupdate"}}active{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.recentupdate"}}</a> |
|
<a class="{{if eq .SortType "leastupdate"}}active{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort=leastupdate&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastupdate"}}</a> |
|
<a class="{{if eq .SortType "mostcomment"}}active{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort=mostcomment&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.mostcomment"}}</a> |
|
<a class="{{if eq .SortType "leastcomment"}}active{{end}} item" href="{{$.Link}}?type={{$.ViewType}}&sort=leastcomment&state={{$.State}}&labels={{.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}">{{.i18n.Tr "repo.issues.filter_sort.leastcomment"}}</a> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="issue list"> |
|
{{range .Issues}} |
|
{{ $timeStr:= TimeSince .Created $.Lang }} |
|
<li class="item"> |
|
<div class="ui {{if .IsRead}}black{{else}}green{{end}} label">#{{.Index}}</div> |
|
<a class="title has-emoji" href="{{$.Link}}/{{.Index}}">{{.Name}}</a> |
|
|
|
{{range .Labels}} |
|
<a class="ui label" href="{{$.Link}}?type={{$.ViewType}}&state={{$.State}}&labels={{.ID}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}" style="color: {{.ForegroundColor}}; background-color: {{.Color}}">{{.Name}}</a> |
|
{{end}} |
|
|
|
{{if .NumComments}} |
|
<span class="comment ui right"><i class="octicon octicon-comment"></i> {{.NumComments}}</span> |
|
{{end}} |
|
|
|
<p class="desc"> |
|
{{$.i18n.Tr "repo.issues.opened_by" $timeStr .Poster.HomeLink .Poster.Name | Safe}} |
|
{{if .Milestone}} |
|
<a class="milestone" href="{{$.Link}}?type={{$.ViewType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{.Milestone.ID}}&assignee={{$.AssigneeID}}"> |
|
<span class="octicon octicon-milestone"></span> {{.Milestone.Name}} |
|
</a> |
|
{{end}} |
|
{{if .Assignee}} |
|
<a class="ui right assignee poping up" href="{{.Assignee.HomeLink}}" data-content="{{.Assignee.Name}}" data-variation="inverted" data-position="left center"> |
|
<img class="ui avatar image" src="{{.Assignee.AvatarLink}}"> |
|
</a> |
|
{{end}} |
|
</p> |
|
</li> |
|
{{end}} |
|
|
|
{{with .Page}} |
|
{{if gt .TotalPages 1}} |
|
<div class="center page buttons"> |
|
<div class="ui borderless pagination menu"> |
|
<a class="{{if not .HasPrevious}}disabled{{end}} item" {{if .HasPrevious}}href="{{$.Link}}?type={{$.ViewType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Previous}}"{{end}}> |
|
<i class="left arrow icon"></i> {{$.i18n.Tr "repo.issues.previous"}} |
|
</a> |
|
{{range .Pages}} |
|
{{if eq .Num -1}} |
|
<a class="disabled item">...</a> |
|
{{else}} |
|
<a class="{{if .IsCurrent}}active{{end}} item" {{if not .IsCurrent}}href="{{$.Link}}?type={{$.ViewType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Num}}"{{end}}>{{.Num}}</a> |
|
{{end}} |
|
{{end}} |
|
<a class="{{if not .HasNext}}disabled{{end}} item" {{if .HasNext}}href="{{$.Link}}?type={{$.ViewType}}&state={{$.State}}&labels={{$.SelectLabels}}&milestone={{$.MilestoneID}}&assignee={{$.AssigneeID}}&page={{.Next}}"{{end}}> |
|
{{$.i18n.Tr "repo.issues.next"}} <i class="icon right arrow"></i> |
|
</a> |
|
</div> |
|
</div> |
|
{{end}} |
|
{{end}} |
|
</div> |
|
</div> |
|
</div> |
|
{{template "base/footer" .}}
|
|
|