@ -50,9 +50,9 @@
<input type="text" placeholder=" {{ .locale .Tr "repo.issues.filter_label" }} ">
</div>
<span class="info"> {{ .locale .Tr "repo.issues.filter_label_exclude" | Safe }} </span>
<a class="item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_label_no_select" }} </a>
<a class="item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_label_no_select" }} </a>
{{ range .Labels }}
<a class="item label-filter-item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .QueryString }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} " data-label-id=" {{ .ID }} "> {{ if .IsExcluded }} {{ svg "octicon-circle-slash" }} {{ else if .IsSelected }} {{ svg "octicon-check" }} {{ end }} <span class="label color" style="background-color: {{ .Color }} "></span> {{ .Name | RenderEmoji }} </a>
<a class="item label-filter-item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .QueryString }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} " data-label-id=" {{ .ID }} "> {{ if .IsExcluded }} {{ svg "octicon-circle-slash" }} {{ else if .IsSelected }} {{ svg "octicon-check" }} {{ end }} <span class="label color" style="background-color: {{ .Color }} "></span> {{ .Name | RenderEmoji }} </a>
{{ end }}
</div>
</div>
@ -70,7 +70,25 @@
</div>
<a class="item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_milestone_no_select" }} </a>
{{ range .Milestones }}
<a class=" {{ if $ .MilestoneID }} {{ if eq $ .MilestoneID .ID }} active selected {{ end }} {{ end }} item" href=" {{ $ .Link }} ?type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ $ .SelectLabels }} &milestone= {{ .ID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .Name }} </a>
<a class=" {{ if $ .MilestoneID }} {{ if eq $ .MilestoneID .ID }} active selected {{ end }} {{ end }} item" href=" {{ $ .Link }} ?type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ $ .SelectLabels }} &milestone= {{ .ID }} &project= {{ $ .ProjectID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .Name }} </a>
{{ end }}
</div>
</div>
<!-- Project -->
<div class="ui {{ if not .Projects }} disabled {{ end }} dropdown jump item">
<span class="text">
{{ .locale .Tr "repo.issues.filter_project" }}
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
</span>
<div class="menu">
<div class="ui icon search input">
<i class="icon df ac jc"> {{ svg "octicon-search" 1 6 }} </i>
<input type="text" placeholder=" {{ .locale .Tr "repo.issues.filter_project" }} ">
</div>
<a class="item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_project_no_select" }} </a>
{{ range .Projects }}
<a class=" {{ if $ .ProjectID }} {{ if eq $ .ProjectID .ID }} active selected {{ end }} {{ end }} item" href=" {{ $ .Link }} ?type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ $ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ .ID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .Title }} </a>
{{ end }}
</div>
</div>
@ -86,9 +104,9 @@
<i class="icon df ac jc"> {{ svg "octicon-search" 1 6 }} </i>
<input type="text" placeholder=" {{ .locale .Tr "repo.issues.filter_poster" }} ">
</div>
<a class="item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} "> {{ .locale .Tr "repo.issues.filter_poster_no_select" }} </a>
<a class="item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} "> {{ .locale .Tr "repo.issues.filter_poster_no_select" }} </a>
{{ range .Posters }}
<a class=" {{ if eq $ .PosterID .ID }} active selected {{ end }} item" href=" {{ $ .Link }} ?type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ $ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ .ID }} ">
<a class=" {{ if eq $ .PosterID .ID }} active selected {{ end }} item" href=" {{ $ .Link }} ?type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ $ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ .ID }} ">
{{ avatar . }} {{ .GetDisplayName }}
</a>
{{ end }}
@ -106,9 +124,9 @@
<i class="icon df ac jc"> {{ svg "octicon-search" 1 6 }} </i>
<input type="text" placeholder=" {{ .locale .Tr "repo.issues.filter_assignee" }} ">
</div>
<a class="item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_assginee_no_select" }} </a>
<a class="item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} &p oster= {{ $ .PosterID }} "> {{ .locale .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 }} &poster= {{ $ .PosterID }} ">
<a class=" {{ if eq $ .AssigneeID .ID }} active selected {{ end }} item" href=" {{ $ .Link }} ?type= {{ $ .ViewType }} &sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ $ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ .ID }} &poster= {{ $ .PosterID }} ">
{{ avatar . }} {{ .GetDisplayName }}
</a>
{{ end }}
@ -123,12 +141,12 @@
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
</span>
<div class="menu">
<a class=" {{ if eq .ViewType "all" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=all&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.all_issues" }} </a>
<a class=" {{ if eq .ViewType "assigned" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=assigned&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.assigned_to_you" }} </a>
<a class=" {{ if eq .ViewType "created_by" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=created_by&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.created_by_you" }} </a>
<a class=" {{ if eq .ViewType "mentioned" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=mentioned&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.mentioning_you" }} </a>
<a class=" {{ if eq .ViewType "all" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=all&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.all_issues" }} </a>
<a class=" {{ if eq .ViewType "assigned" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=assigned&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.assigned_to_you" }} </a>
<a class=" {{ if eq .ViewType "created_by" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=created_by&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.created_by_you" }} </a>
<a class=" {{ if eq .ViewType "mentioned" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=mentioned&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.mentioning_you" }} </a>
{{ if .PageIsPullList }}
<a class=" {{ if eq .ViewType "review_requested" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=review_requested&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.review_requested" }} </a>
<a class=" {{ if eq .ViewType "review_requested" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type=review_requested&sort= {{ $ .SortType }} &state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_type.review_requested" }} </a>
{{ end }}
</div>
</div>
@ -141,14 +159,14 @@
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
</span>
<div class="menu">
<a class=" {{ if or ( eq .SortType "latest" ) ( not .SortType ) }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=latest&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.latest" }} </a>
<a class=" {{ if eq .SortType "oldest" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=oldest&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.oldest" }} </a>
<a class=" {{ if eq .SortType "recentupdate" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=recentupdate&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.recentupdate" }} </a>
<a class=" {{ if eq .SortType "leastupdate" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=leastupdate&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.leastupdate" }} </a>
<a class=" {{ if eq .SortType "mostcomment" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=mostcomment&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.mostcomment" }} </a>
<a class=" {{ if eq .SortType "leastcomment" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=leastcomment&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.leastcomment" }} </a>
<a class=" {{ if eq .SortType "nearduedate" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=nearduedate&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.nearduedate" }} </a>
<a class=" {{ if eq .SortType "farduedate" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=farduedate&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.farduedate" }} </a>
<a class=" {{ if or ( eq .SortType "latest" ) ( not .SortType ) }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=latest&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.latest" }} </a>
<a class=" {{ if eq .SortType "oldest" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=oldest&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.oldest" }} </a>
<a class=" {{ if eq .SortType "recentupdate" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=recentupdate&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.recentupdate" }} </a>
<a class=" {{ if eq .SortType "leastupdate" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=leastupdate&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.leastupdate" }} </a>
<a class=" {{ if eq .SortType "mostcomment" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=mostcomment&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.mostcomment" }} </a>
<a class=" {{ if eq .SortType "leastcomment" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=leastcomment&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.leastcomment" }} </a>
<a class=" {{ if eq .SortType "nearduedate" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=nearduedate&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.nearduedate" }} </a>
<a class=" {{ if eq .SortType "farduedate" }} active {{ end }} item" href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &type= {{ $ .ViewType }} &sort=farduedate&state= {{ $ .State }} &labels= {{ .SelectLabels }} &milestone= {{ $ .MilestoneID }} &project= {{ $ .ProjectID }} & assignee= {{ $ .AssigneeID }} &poster= {{ $ .PosterID }} "> {{ .locale .Tr "repo.issues.filter_sort.farduedate" }} </a>
</div>
</div>
</div>