2022-09-29 22:09:14 +03:00
{{ template "base/head" . }}
2023-07-09 21:42:31 +03:00
<div role="main" aria-label=" {{ .Title }} " class="page-content user notification">
2022-09-29 22:09:14 +03:00
<div class="ui container">
2024-04-29 23:53:15 +03:00
<div class="ui compact small menu small-menu-items">
2022-09-29 22:09:14 +03:00
<a href=" {{ AppSubUrl }} /notifications/subscriptions" class=" {{ if eq .Status 1 }} active {{ end }} item">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "notification.subscriptions" }}
2022-09-29 22:09:14 +03:00
</a>
<a href=" {{ AppSubUrl }} /notifications/watching" class=" {{ if eq .Status 2 }} active {{ end }} item">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "notification.watching" }}
2022-09-29 22:09:14 +03:00
</a>
</div>
2024-04-29 23:53:15 +03:00
<div class="ui top attached segment">
2022-09-29 22:09:14 +03:00
{{ if eq .Status 1 }}
2024-03-22 16:45:10 +03:00
<div class="tw-flex tw-justify-between">
<div class="tw-flex">
2023-05-04 00:58:59 +03:00
<div class="small-menu-items ui compact tiny menu">
2024-03-20 08:56:42 +03:00
<a class=" {{ if eq .State "all" }} active {{ end }} item" href="?sort= {{ $ .SortType }} &state=all&issueType= {{ $ .IssueType }} &labels= {{ $ .Labels }} ">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "all" }}
2022-09-29 22:09:14 +03:00
</a>
2024-03-20 08:56:42 +03: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}/**/*
```
2024-03-24 19:42:49 +03:00
{{ svg "octicon-issue-opened" 1 6 "tw-mr-2" }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "repo.issues.open_title" }}
2022-09-29 22:09:14 +03:00
</a>
2024-03-20 08:56:42 +03: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}/**/*
```
2024-03-24 19:42:49 +03:00
{{ svg "octicon-issue-closed" 1 6 "tw-mr-2" }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "repo.issues.closed_title" }}
2022-09-29 22:09:14 +03:00
</a>
</div>
</div>
2024-03-22 16:45:10 +03:00
<div class="tw-flex tw-justify-between">
2023-07-25 20:53:16 +03:00
<div class="ui right aligned secondary filter menu labels">
2022-09-29 22:09:14 +03:00
<!-- Type -->
<div class="ui dropdown type jump item">
<span class="text">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "repo.issues.filter_type" }}
2022-09-29 22:09:14 +03:00
</span>
2023-09-21 18:54:26 +03:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2022-09-29 22:09:14 +03:00
<div class="menu">
2024-03-20 08:56:42 +03: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 22:09:14 +03:00
</div>
</div>
<!-- Sort -->
<div class="ui dropdown type jump item">
<span class="text">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "repo.issues.filter_sort" }}
2022-09-29 22:09:14 +03:00
</span>
2023-09-21 18:54:26 +03:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2022-09-29 22:09:14 +03:00
<div class="menu">
2024-03-20 08:56:42 +03: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 22:09:14 +03:00
</div>
</div>
</div>
</div>
</div>
2023-09-27 07:00:57 +03:00
<div class="divider"></div>
2023-12-05 00:48:42 +03:00
{{ if not .Issues }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "notification.no_subscriptions" }}
2022-09-29 22:09:14 +03:00
{{ else }}
2023-04-07 17:39:08 +03:00
{{ template "shared/issuelist" dict "." . "listType" "dashboard" }}
2022-09-29 22:09:14 +03:00
{{ end }}
{{ else }}
2024-03-03 13:18:34 +03:00
{{ template "shared/repo_search" . }}
2022-09-29 22:09:14 +03:00
{{ template "explore/repo_list" . }}
{{ template "base/paginate" . }}
{{ end }}
</div>
</div>
</div>
{{ template "base/footer" . }}