2015-08-25 16:58:34 +02:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 23:56:10 +01:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content dashboard issues">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "user/dashboard/navbar" .}}
|
|
|
|
<div class="ui container">
|
2024-03-21 16:07:35 +01:00
|
|
|
{{template "base/alert" .}}
|
2024-06-15 18:11:31 +02:00
|
|
|
<div class="list-header">
|
|
|
|
<div class="small-menu-items ui compact tiny menu list-header-toggle">
|
2024-06-17 20:58:24 +02:00
|
|
|
<a class="item{{if not .IsShowClosed}} active{{end}}" href="?type={{$.ViewType}}&sort={{$.SortType}}&state=open&labels={{.SelectLabels}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
2024-06-15 18:11:31 +02:00
|
|
|
{{svg "octicon-issue-opened" 16 "tw-mr-2"}}
|
|
|
|
{{ctx.Locale.PrettyNumber .IssueStats.OpenCount}} {{ctx.Locale.Tr "repo.issues.open_title"}}
|
|
|
|
</a>
|
2024-06-17 20:58:24 +02:00
|
|
|
<a class="item{{if .IsShowClosed}} active{{end}}" href="?type={{$.ViewType}}&sort={{$.SortType}}&state=closed&labels={{.SelectLabels}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
2024-06-15 18:11:31 +02:00
|
|
|
{{svg "octicon-issue-closed" 16 "tw-mr-2"}}
|
|
|
|
{{ctx.Locale.PrettyNumber .IssueStats.ClosedCount}} {{ctx.Locale.Tr "repo.issues.closed_title"}}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<form class="list-header-search ui form ignore-dirty">
|
|
|
|
<div class="ui small search fluid action input">
|
|
|
|
<input type="hidden" name="type" value="{{$.ViewType}}">
|
|
|
|
<input type="hidden" name="sort" value="{{$.SortType}}">
|
|
|
|
<input type="hidden" name="state" value="{{$.State}}">
|
2024-06-17 20:58:24 +02:00
|
|
|
{{if .PageIsPulls}}
|
|
|
|
{{template "shared/search/combo_fuzzy" dict "Value" $.Keyword "IsFuzzy" $.IsFuzzy "Placeholder" (ctx.Locale.Tr "search.pull_kind") "Tooltip" (ctx.Locale.Tr "explore.go_to")}}
|
|
|
|
{{else}}
|
|
|
|
{{template "shared/search/combo_fuzzy" dict "Value" $.Keyword "IsFuzzy" $.IsFuzzy "Placeholder" (ctx.Locale.Tr "search.issue_kind") "Tooltip" (ctx.Locale.Tr "explore.go_to")}}
|
|
|
|
{{end}}
|
2024-06-15 18:11:31 +02:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<div class="ui secondary menu tw-mt-0">
|
|
|
|
<!-- Label -->
|
|
|
|
{{if .PageIsOrgIssues}}
|
|
|
|
{{template "shared/label_filter" .}}
|
|
|
|
{{end}}
|
|
|
|
<!-- Type -->
|
|
|
|
<div class="list-header ui dropdown type jump item">
|
|
|
|
<span class="text tw-whitespace-nowrap">
|
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_type"}}
|
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
|
|
|
</span>
|
|
|
|
<div class="ui menu">
|
2024-06-17 20:58:24 +02:00
|
|
|
<a class="{{if eq .ViewType "your_repositories"}}active{{end}} item" href="?type=your_repositories&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
2024-06-15 18:11:31 +02:00
|
|
|
<div class="ui circular mini label tw-ml-0">{{CountFmt .IssueStats.YourRepositoriesCount}}</div>
|
|
|
|
{{ctx.Locale.Tr "home.issues.in_your_repos"}}
|
2021-01-17 17:34:19 +01:00
|
|
|
</a>
|
2024-06-17 20:58:24 +02:00
|
|
|
<a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="?type=assigned&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
2024-06-15 18:11:31 +02:00
|
|
|
<div class="ui circular mini label tw-ml-0">{{CountFmt .IssueStats.AssignCount}}</div>
|
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_type.assigned_to_you"}}
|
2023-02-25 03:55:50 +01:00
|
|
|
</a>
|
2024-06-17 20:58:24 +02:00
|
|
|
<a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="?type=created_by&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
2024-06-15 18:11:31 +02:00
|
|
|
<div class="ui circular mini label tw-ml-0">{{CountFmt .IssueStats.CreateCount}}</div>
|
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_type.created_by_you"}}
|
2023-04-30 05:33:25 +02:00
|
|
|
</a>
|
2024-06-15 18:11:31 +02:00
|
|
|
{{if .PageIsPulls}}
|
2024-06-17 20:58:24 +02:00
|
|
|
<a class="{{if eq .ViewType "review_requested"}}active{{end}} item" href="?type=review_requested&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
2024-06-15 18:11:31 +02:00
|
|
|
<div class="ui circular mini label tw-ml-0">{{CountFmt .IssueStats.ReviewRequestedCount}}</div>
|
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_type.review_requested"}}
|
|
|
|
</a>
|
2024-06-17 20:58:24 +02:00
|
|
|
<a class="{{if eq .ViewType "reviewed_by"}}active{{end}} item" href="?type=reviewed_by&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
2024-06-15 18:11:31 +02:00
|
|
|
<div class="ui circular mini label tw-ml-0">{{CountFmt .IssueStats.ReviewedCount}}</div>
|
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_type.reviewed_by_you"}}
|
|
|
|
</a>
|
|
|
|
{{end}}
|
2024-06-17 20:58:24 +02:00
|
|
|
<a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="?type=mentioned&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
2024-06-15 18:11:31 +02:00
|
|
|
<div class="ui circular mini label tw-ml-0">{{CountFmt .IssueStats.MentionCount}}</div>
|
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_type.mentioning_you"}}
|
2023-04-30 05:33:25 +02:00
|
|
|
</a>
|
2020-02-29 07:52:05 +01:00
|
|
|
</div>
|
2024-06-15 18:11:31 +02:00
|
|
|
</div>
|
|
|
|
<!-- Sort -->
|
|
|
|
<div class="list-header-sort ui dropdown type jump item">
|
|
|
|
<span class="text tw-whitespace-nowrap">
|
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_sort"}}
|
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
|
|
|
</span>
|
|
|
|
<div class="menu">
|
2024-06-17 20:58:24 +02:00
|
|
|
<a class="{{if eq .SortType "recentupdate"}}active {{end}}item" href="?type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&labels={{.SelectLabels}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">{{ctx.Locale.Tr "repo.issues.filter_sort.recentupdate"}}</a>
|
|
|
|
<a class="{{if eq .SortType "leastupdate"}}active {{end}}item" href="?type={{$.ViewType}}&sort=leastupdate&state={{$.State}}&labels={{.SelectLabels}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">{{ctx.Locale.Tr "repo.issues.filter_sort.leastupdate"}}</a>
|
|
|
|
<a class="{{if or (eq .SortType "latest") (not .SortType)}}active {{end}}item" href="?type={{$.ViewType}}&sort=latest&state={{$.State}}&labels={{.SelectLabels}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">{{ctx.Locale.Tr "repo.issues.filter_sort.latest"}}</a>
|
|
|
|
<a class="{{if eq .SortType "oldest"}}active {{end}}item" href="?type={{$.ViewType}}&sort=oldest&state={{$.State}}&labels={{.SelectLabels}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">{{ctx.Locale.Tr "repo.issues.filter_sort.oldest"}}</a>
|
|
|
|
<a class="{{if eq .SortType "mostcomment"}}active {{end}}item" href="?type={{$.ViewType}}&sort=mostcomment&state={{$.State}}&labels={{.SelectLabels}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">{{ctx.Locale.Tr "repo.issues.filter_sort.mostcomment"}}</a>
|
|
|
|
<a class="{{if eq .SortType "leastcomment"}}active {{end}}item" href="?type={{$.ViewType}}&sort=leastcomment&state={{$.State}}&labels={{.SelectLabels}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">{{ctx.Locale.Tr "repo.issues.filter_sort.leastcomment"}}</a>
|
|
|
|
<a class="{{if eq .SortType "nearduedate"}}active {{end}}item" href="?type={{$.ViewType}}&sort=nearduedate&state={{$.State}}&labels={{.SelectLabels}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">{{ctx.Locale.Tr "repo.issues.filter_sort.nearduedate"}}</a>
|
|
|
|
<a class="{{if eq .SortType "farduedate"}}active {{end}}item" href="?type={{$.ViewType}}&sort=farduedate&state={{$.State}}&labels={{.SelectLabels}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">{{ctx.Locale.Tr "repo.issues.filter_sort.farduedate"}}</a>
|
2015-11-04 18:50:02 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-06-15 18:11:31 +02:00
|
|
|
{{template "shared/issuelist" dict "." . "listType" "dashboard"}}
|
2015-08-25 16:58:34 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|