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" >
2023-11-08 03:30:39 +01:00
< div class = "flex-container" >
< div class = "flex-container-nav" >
2024-03-08 22:02:05 +01:00
< div class = "ui secondary vertical filter menu tw-bg-transparent" >
2024-03-20 07:58:10 +01:00
< a class = " {{ if eq .ViewType "your_repositories" }} active {{ end }} item" href = "?type=your_repositories&sort= {{ $.SortType }} &state= {{ .State }} &q= {{ $.Keyword }} " >
2023-09-25 10:56:50 +02:00
{{ ctx .Locale.Tr "home.issues.in_your_repos" }}
2023-08-31 04:29:59 +02:00
< strong > {{ CountFmt .IssueStats.YourRepositoriesCount }} </ strong >
2015-12-07 23:30:52 +01:00
< / a >
2024-03-20 07:58:10 +01:00
< a class = " {{ if eq .ViewType "assigned" }} active {{ end }} item" href = "?type=assigned&sort= {{ $.SortType }} &state= {{ .State }} &q= {{ $.Keyword }} " >
2023-09-25 10:56:50 +02:00
{{ ctx .Locale.Tr "repo.issues.filter_type.assigned_to_you" }}
2023-08-31 04:29:59 +02:00
< strong > {{ CountFmt .IssueStats.AssignCount }} </ strong >
2021-01-03 18:29:12 +01:00
< / a >
2024-03-20 07:58:10 +01:00
< a class = " {{ if eq .ViewType "created_by" }} active {{ end }} item" href = "?type=created_by&sort= {{ $.SortType }} &state= {{ .State }} &q= {{ $.Keyword }} " >
2023-09-25 10:56:50 +02:00
{{ ctx .Locale.Tr "repo.issues.filter_type.created_by_you" }}
2023-08-31 04:29:59 +02:00
< strong > {{ CountFmt .IssueStats.CreateCount }} </ strong >
2021-01-03 18:29:12 +01:00
< / a >
2021-01-17 17:34:19 +01:00
{{ if .PageIsPulls }}
2024-03-20 07:58:10 +01:00
< a class = " {{ if eq .ViewType "review_requested" }} active {{ end }} item" href = "?type=review_requested&sort= {{ $.SortType }} &state= {{ .State }} &q= {{ $.Keyword }} " >
2023-09-25 10:56:50 +02:00
{{ ctx .Locale.Tr "repo.issues.filter_type.review_requested" }}
2023-08-31 04:29:59 +02:00
< strong > {{ CountFmt .IssueStats.ReviewRequestedCount }} </ strong >
2021-01-17 17:34:19 +01:00
< / a >
2024-03-20 07:58:10 +01:00
< a class = " {{ if eq .ViewType "reviewed_by" }} active {{ end }} item" href = "?type=reviewed_by&sort= {{ $.SortType }} &state= {{ .State }} &q= {{ $.Keyword }} " >
2023-09-25 10:56:50 +02:00
{{ ctx .Locale.Tr "repo.issues.filter_type.reviewed_by_you" }}
2023-08-31 04:29:59 +02:00
< strong > {{ CountFmt .IssueStats.ReviewedCount }} </ strong >
2023-02-25 03:55:50 +01:00
< / a >
2021-04-11 05:46:37 +02:00
{{ end }}
2024-03-20 07:58:10 +01:00
< a class = " {{ if eq .ViewType "mentioned" }} active {{ end }} item" href = "?type=mentioned&sort= {{ $.SortType }} &state= {{ .State }} &q= {{ $.Keyword }} " >
2023-09-25 10:56:50 +02:00
{{ ctx .Locale.Tr "repo.issues.filter_type.mentioning_you" }}
2023-08-31 04:29:59 +02:00
< strong > {{ CountFmt .IssueStats.MentionCount }} </ strong >
2023-02-25 03:55:50 +01:00
< / a >
2015-12-07 23:30:52 +01:00
< / div >
< / div >
2023-11-08 03:30:39 +01:00
< div class = "flex-container-main content" >
2023-04-30 05:33:25 +02:00
< div class = "list-header" >
2023-06-18 12:31:42 +02:00
< div class = "small-menu-items ui compact tiny menu list-header-toggle" >
2024-03-20 07:58:10 +01:00
< a class = "item {{ if not .IsShowClosed }} active {{ end }} " href = "?type= {{ $.ViewType }} &sort= {{ $.SortType }} &state=open&q= {{ $.Keyword }} " >
2023-04-30 05:33:25 +02:00
{{ svg "octicon-issue-opened" 16 "gt-mr-3" }}
2023-09-25 14:42:40 +02:00
{{ ctx .Locale.PrettyNumber .IssueStats.OpenCount }} {{ ctx .Locale.Tr "repo.issues.open_title" }}
2023-04-30 05:33:25 +02:00
< / a >
2024-03-20 07:58:10 +01:00
< a class = "item {{ if .IsShowClosed }} active {{ end }} " href = "?type= {{ $.ViewType }} &sort= {{ $.SortType }} &state=closed&q= {{ $.Keyword }} " >
2023-04-30 05:33:25 +02:00
{{ svg "octicon-issue-closed" 16 "gt-mr-3" }}
2023-09-25 14:42:40 +02:00
{{ ctx .Locale.PrettyNumber .IssueStats.ClosedCount }} {{ ctx .Locale.Tr "repo.issues.closed_title" }}
2023-04-30 05:33:25 +02:00
< / a >
2020-02-29 07:52:05 +01:00
< / div >
2023-04-30 05:33:25 +02:00
< 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-03-15 00:24:59 +01:00
{{ template "shared/search/input" dict "Value" $.Keyword }}
2023-09-25 10:56:50 +02:00
< button id = "issue-list-quick-goto" class = "ui small icon button gt-hidden" data-tooltip-content = " {{ ctx .Locale.Tr "explore.go_to" }} " > {{ svg "octicon-hash" }} </ button >
2024-03-15 00:24:59 +01:00
{{ template "shared/search/button" }}
2023-04-30 05:33:25 +02:00
< / div >
< / form >
<!-- Sort -->
< div class = "list-header-sort ui small dropdown type jump item" >
2024-03-04 04:33:20 +01:00
< span class = "text tw-whitespace-nowrap" >
2023-09-25 10:56:50 +02:00
{{ ctx .Locale.Tr "repo.issues.filter_sort" }}
2023-04-30 05:33:25 +02:00
{{ svg "octicon-triangle-down" 14 "dropdown icon" }}
< / span >
< div class = "menu" >
2024-03-20 06:56:42 +01:00
< a class = " {{ if eq .SortType "recentupdate" }} active {{ end }} item" href = "?type= {{ $.ViewType }} &sort=recentupdate&state= {{ $.State }} &q= {{ $.Keyword }} " > {{ 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 }} &q= {{ $.Keyword }} " > {{ 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 }} &q= {{ $.Keyword }} " > {{ 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 }} &q= {{ $.Keyword }} " > {{ 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 }} &q= {{ $.Keyword }} " > {{ 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 }} &q= {{ $.Keyword }} " > {{ 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 }} &q= {{ $.Keyword }} " > {{ 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 }} &q= {{ $.Keyword }} " > {{ ctx .Locale.Tr "repo.issues.filter_sort.farduedate" }} </ a >
2015-11-04 18:50:02 +01:00
< / div >
< / div >
< / div >
2023-04-07 16:39:08 +02:00
{{ template "shared/issuelist" dict "." . "listType" "dashboard" }}
2015-12-07 23:30:52 +01:00
< / div >
< / div >
2015-08-25 16:58:34 +02:00
< / div >
< / div >
{{ template "base/footer" . }}