2015-08-25 08:58:34 -06:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 15:56:10 -07:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content dashboard issues">
|
2015-12-07 15:30:52 -07:00
|
|
|
{{template "user/dashboard/navbar" .}}
|
|
|
|
<div class="ui container">
|
2024-03-21 09:07:35 -06:00
|
|
|
{{template "base/alert" .}}
|
2023-11-07 19:30:39 -07:00
|
|
|
<div class="flex-container">
|
|
|
|
<div class="flex-container-nav">
|
2024-03-08 14:02:05 -07:00
|
|
|
<div class="ui secondary vertical filter menu tw-bg-transparent">
|
2024-04-17 18:16:52 -06:00
|
|
|
<a class="{{if eq .ViewType "your_repositories"}}active{{end}} item" href="?type=your_repositories&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "home.issues.in_your_repos"}}
|
2023-08-30 20:29:59 -06:00
|
|
|
<strong>{{CountFmt .IssueStats.YourRepositoriesCount}}</strong>
|
2015-12-07 15:30:52 -07:00
|
|
|
</a>
|
2024-04-17 18:16:52 -06:00
|
|
|
<a class="{{if eq .ViewType "assigned"}}active{{end}} item" href="?type=assigned&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_type.assigned_to_you"}}
|
2023-08-30 20:29:59 -06:00
|
|
|
<strong>{{CountFmt .IssueStats.AssignCount}}</strong>
|
2021-01-03 10:29:12 -07:00
|
|
|
</a>
|
2024-04-17 18:16:52 -06:00
|
|
|
<a class="{{if eq .ViewType "created_by"}}active{{end}} item" href="?type=created_by&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_type.created_by_you"}}
|
2023-08-30 20:29:59 -06:00
|
|
|
<strong>{{CountFmt .IssueStats.CreateCount}}</strong>
|
2021-01-03 10:29:12 -07:00
|
|
|
</a>
|
2021-01-17 09:34:19 -07:00
|
|
|
{{if .PageIsPulls}}
|
2024-04-17 18:16:52 -06:00
|
|
|
<a class="{{if eq .ViewType "review_requested"}}active{{end}} item" href="?type=review_requested&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_type.review_requested"}}
|
2023-08-30 20:29:59 -06:00
|
|
|
<strong>{{CountFmt .IssueStats.ReviewRequestedCount}}</strong>
|
2021-01-17 09:34:19 -07:00
|
|
|
</a>
|
2024-04-17 18:16:52 -06:00
|
|
|
<a class="{{if eq .ViewType "reviewed_by"}}active{{end}} item" href="?type=reviewed_by&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_type.reviewed_by_you"}}
|
2023-08-30 20:29:59 -06:00
|
|
|
<strong>{{CountFmt .IssueStats.ReviewedCount}}</strong>
|
2023-02-24 19:55:50 -07:00
|
|
|
</a>
|
2021-04-10 21:46:37 -06:00
|
|
|
{{end}}
|
2024-04-17 18:16:52 -06:00
|
|
|
<a class="{{if eq .ViewType "mentioned"}}active{{end}} item" href="?type=mentioned&sort={{$.SortType}}&state={{.State}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_type.mentioning_you"}}
|
2023-08-30 20:29:59 -06:00
|
|
|
<strong>{{CountFmt .IssueStats.MentionCount}}</strong>
|
2023-02-24 19:55:50 -07:00
|
|
|
</a>
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-11-07 19:30:39 -07:00
|
|
|
<div class="flex-container-main content">
|
2023-04-29 21:33:25 -06:00
|
|
|
<div class="list-header">
|
2023-06-18 04:31:42 -06:00
|
|
|
<div class="small-menu-items ui compact tiny menu list-header-toggle">
|
2024-04-17 18:16:52 -06:00
|
|
|
<a class="item{{if not .IsShowClosed}} active{{end}}" href="?type={{$.ViewType}}&sort={{$.SortType}}&state=open&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-24 10:42:49 -06:00
|
|
|
{{svg "octicon-issue-opened" 16 "tw-mr-2"}}
|
2023-09-25 06:42:40 -06:00
|
|
|
{{ctx.Locale.PrettyNumber .IssueStats.OpenCount}} {{ctx.Locale.Tr "repo.issues.open_title"}}
|
2023-04-29 21:33:25 -06:00
|
|
|
</a>
|
2024-04-17 18:16:52 -06:00
|
|
|
<a class="item{{if .IsShowClosed}} active{{end}}" href="?type={{$.ViewType}}&sort={{$.SortType}}&state=closed&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-24 10:42:49 -06:00
|
|
|
{{svg "octicon-issue-closed" 16 "tw-mr-2"}}
|
2023-09-25 06:42:40 -06:00
|
|
|
{{ctx.Locale.PrettyNumber .IssueStats.ClosedCount}} {{ctx.Locale.Tr "repo.issues.closed_title"}}
|
2023-04-29 21:33:25 -06:00
|
|
|
</a>
|
2020-02-28 23:52:05 -07:00
|
|
|
</div>
|
2023-04-29 21:33:25 -06: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-06-12 20:16:17 -06:00
|
|
|
{{template "shared/search/combo_fuzzy" dict "Value" $.Keyword "IsFuzzy" $.IsFuzzy "Placeholder" (ctx.Locale.Tr (Iif .PageIsPulls "search.pull_kind" "search.issue_kind")) "Tooltip" (ctx.Locale.Tr "explore.go_to")}}
|
2023-04-29 21:33:25 -06:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<!-- Sort -->
|
|
|
|
<div class="list-header-sort ui small dropdown type jump item">
|
2024-03-03 20:33:20 -07:00
|
|
|
<span class="text tw-whitespace-nowrap">
|
2023-09-25 02:56:50 -06:00
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_sort"}}
|
2023-04-29 21:33:25 -06:00
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
|
|
|
</span>
|
|
|
|
<div class="menu">
|
2024-04-17 18:16:52 -06:00
|
|
|
<a class="{{if eq .SortType "recentupdate"}}active {{end}}item" href="?type={{$.ViewType}}&sort=recentupdate&state={{$.State}}&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}}&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}}&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}}&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}}&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}}&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}}&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}}&q={{$.Keyword}}&fuzzy={{.IsFuzzy}}">{{ctx.Locale.Tr "repo.issues.filter_sort.farduedate"}}</a>
|
2015-11-04 10:50:02 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-07 08:39:08 -06:00
|
|
|
{{template "shared/issuelist" dict "." . "listType" "dashboard"}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-25 08:58:34 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|