2022-09-29 21:09:14 +02:00
|
|
|
{{template "base/head" .}}
|
2023-07-09 20:42:31 +02:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content user notification">
|
2022-09-29 21:09:14 +02:00
|
|
|
<div class="ui container">
|
2024-04-11 20:02:27 +02:00
|
|
|
<div class="tw-flex tw-items-center tw-justify-between tw-mb-4">
|
|
|
|
<div class="ui secondary partial menu">
|
|
|
|
<a href="{{AppSubUrl}}/notifications/subscriptions" class="{{if eq .Status 1}}active {{end}}item">
|
|
|
|
{{ctx.Locale.Tr "notification.subscriptions"}}
|
|
|
|
</a>
|
|
|
|
<a href="{{AppSubUrl}}/notifications/watching" class="{{if eq .Status 2}}active {{end}}item">
|
|
|
|
{{ctx.Locale.Tr "notification.watching"}}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<a class="ui tiny button" href="{{AppSubUrl}}/notifications">
|
|
|
|
{{ctx.Locale.Tr "notifications"}}
|
2022-09-29 21:09:14 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
2024-04-11 20:02:27 +02:00
|
|
|
<div class="ui bottom active tab segment">
|
2022-09-29 21:09:14 +02:00
|
|
|
{{if eq .Status 1}}
|
2024-03-22 14:45:10 +01:00
|
|
|
<div class="tw-flex tw-justify-between">
|
|
|
|
<div class="tw-flex">
|
2023-05-03 23:58:59 +02:00
|
|
|
<div class="small-menu-items ui compact tiny menu">
|
2024-03-20 06:56:42 +01:00
|
|
|
<a class="{{if eq .State "all"}}active {{end}}item" href="?sort={{$.SortType}}&state=all&issueType={{$.IssueType}}&labels={{$.Labels}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "all"}}
|
2022-09-29 21:09:14 +02:00
|
|
|
</a>
|
2024-03-20 06:56:42 +01:00
|
|
|
<a class="{{if eq .State "open"}}active {{end}}item" href="?sort={{$.SortType}}&state=open&issueType={{$.IssueType}}&labels={{$.Labels}}">
|
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}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 17:42:49 +01:00
|
|
|
{{svg "octicon-issue-opened" 16 "tw-mr-2"}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.issues.open_title"}}
|
2022-09-29 21:09:14 +02:00
|
|
|
</a>
|
2024-03-20 06:56:42 +01:00
|
|
|
<a class="{{if eq .State "closed"}}active {{end}}item" href="?sort={{$.SortType}}&state=closed&issueType={{$.IssueType}}&labels={{$.Labels}}">
|
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}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 17:42:49 +01:00
|
|
|
{{svg "octicon-issue-closed" 16 "tw-mr-2"}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.issues.closed_title"}}
|
2022-09-29 21:09:14 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-22 14:45:10 +01:00
|
|
|
<div class="tw-flex tw-justify-between">
|
2023-07-25 19:53:16 +02:00
|
|
|
<div class="ui right aligned secondary filter menu labels">
|
2022-09-29 21:09:14 +02:00
|
|
|
<!-- Type -->
|
|
|
|
<div class="ui dropdown type jump item">
|
|
|
|
<span class="text">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_type"}}
|
2022-09-29 21:09:14 +02:00
|
|
|
</span>
|
2023-09-21 17:54:26 +02:00
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2022-09-29 21:09:14 +02:00
|
|
|
<div class="menu">
|
2024-03-20 06:56:42 +01:00
|
|
|
<a class="{{if or (eq .IssueType "all") (not .IssueType)}}active {{end}}item" href="?sort={{$.SortType}}&state={{$.State}}&issueType=all&labels={{$.Labels}}">{{ctx.Locale.Tr "all"}}</a>
|
|
|
|
<a class="{{if eq .IssueType "issues"}}active {{end}}item" href="?sort={{$.SortType}}&state={{$.State}}&issueType=issues&labels={{$.Labels}}">{{ctx.Locale.Tr "issues"}}</a>
|
|
|
|
<a class="{{if eq .IssueType "pulls"}}active {{end}}item" href="?sort={{$.SortType}}&state={{$.State}}&issueType=pulls&labels={{$.Labels}}">{{ctx.Locale.Tr "pull_requests"}}</a>
|
2022-09-29 21:09:14 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Sort -->
|
|
|
|
<div class="ui dropdown type jump item">
|
|
|
|
<span class="text">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.issues.filter_sort"}}
|
2022-09-29 21:09:14 +02:00
|
|
|
</span>
|
2023-09-21 17:54:26 +02:00
|
|
|
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
|
2022-09-29 21:09:14 +02:00
|
|
|
<div class="menu">
|
2024-03-20 06:56:42 +01:00
|
|
|
<a class="{{if or (eq .SortType "latest") (not .SortType)}}active {{end}}item" href="?sort=latest&state={{$.State}}&issueType={{$.IssueType}}&labels={{$.Labels}}">{{ctx.Locale.Tr "repo.issues.filter_sort.latest"}}</a>
|
|
|
|
<a class="{{if eq .SortType "oldest"}}active {{end}}item" href="?sort=oldest&state={{$.State}}&issueType={{$.IssueType}}&labels={{$.Labels}}">{{ctx.Locale.Tr "repo.issues.filter_sort.oldest"}}</a>
|
|
|
|
<a class="{{if eq .SortType "recentupdate"}}active {{end}}item" href="?sort=recentupdate&state={{$.State}}&issueType={{$.IssueType}}&labels={{$.Labels}}">{{ctx.Locale.Tr "repo.issues.filter_sort.recentupdate"}}</a>
|
|
|
|
<a class="{{if eq .SortType "leastupdate"}}active {{end}}item" href="?sort=leastupdate&state={{$.State}}&issueType={{$.IssueType}}&labels={{$.Labels}}">{{ctx.Locale.Tr "repo.issues.filter_sort.leastupdate"}}</a>
|
|
|
|
<a class="{{if eq .SortType "mostcomment"}}active {{end}}item" href="?sort=mostcomment&state={{$.State}}&issueType={{$.IssueType}}&labels={{$.Labels}}">{{ctx.Locale.Tr "repo.issues.filter_sort.mostcomment"}}</a>
|
|
|
|
<a class="{{if eq .SortType "leastcomment"}}active {{end}}item" href="?sort=leastcomment&state={{$.State}}&issueType={{$.IssueType}}&labels={{$.Labels}}">{{ctx.Locale.Tr "repo.issues.filter_sort.leastcomment"}}</a>
|
|
|
|
<a class="{{if eq .SortType "nearduedate"}}active {{end}}item" href="?sort=nearduedate&state={{$.State}}&issueType={{$.IssueType}}&labels={{$.Labels}}">{{ctx.Locale.Tr "repo.issues.filter_sort.nearduedate"}}</a>
|
|
|
|
<a class="{{if eq .SortType "farduedate"}}active {{end}}item" href="?sort=farduedate&state={{$.State}}&issueType={{$.IssueType}}&labels={{$.Labels}}">{{ctx.Locale.Tr "repo.issues.filter_sort.farduedate"}}</a>
|
2022-09-29 21:09:14 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-09-27 06:00:57 +02:00
|
|
|
<div class="divider"></div>
|
2023-12-04 22:48:42 +01:00
|
|
|
{{if not .Issues}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "notification.no_subscriptions"}}
|
2022-09-29 21:09:14 +02:00
|
|
|
{{else}}
|
2023-04-07 16:39:08 +02:00
|
|
|
{{template "shared/issuelist" dict "." . "listType" "dashboard"}}
|
2022-09-29 21:09:14 +02:00
|
|
|
{{end}}
|
|
|
|
{{else}}
|
2024-03-03 11:18:34 +01:00
|
|
|
{{template "shared/repo_search" .}}
|
2022-09-29 21:09:14 +02:00
|
|
|
{{template "explore/repo_list" .}}
|
|
|
|
{{template "base/paginate" .}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|