2024-03-02 15:45:14 +03:00
|
|
|
{{if .Flash}}
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
{{end}}
|
2023-06-16 09:32:43 +03:00
|
|
|
<form class="issue-content ui comment form form-fetch-action" id="new-issue" action="{{.Link}}" method="post">
|
2015-12-08 01:30:52 +03:00
|
|
|
{{.CsrfTokenHtml}}
|
2023-05-29 13:44:03 +03:00
|
|
|
<div class="issue-content-left">
|
2015-08-09 10:23:02 +03:00
|
|
|
<div class="ui comments">
|
2015-12-08 01:30:52 +03:00
|
|
|
<div class="comment">
|
2023-08-10 06:19:39 +03:00
|
|
|
{{ctx.AvatarUtils.Avatar .SignedUser 40}}
|
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 19:42:49 +03:00
|
|
|
<div class="ui segment content tw-my-0">
|
2015-12-08 01:30:52 +03:00
|
|
|
<div class="field">
|
2024-03-27 10:20:10 +03:00
|
|
|
<input name="title" class="js-autofocus-end" id="issue_title" placeholder="{{ctx.Locale.Tr "repo.milestones.title"}}" value="{{if .TitleQuery}}{{.TitleQuery}}{{else if .IssueTemplateTitle}}{{.IssueTemplateTitle}}{{else}}{{.title}}{{end}}" required maxlength="255" autocomplete="off">
|
2018-08-13 22:04:39 +03:00
|
|
|
{{if .PageIsComparePull}}
|
2024-02-25 17:02:20 +03:00
|
|
|
<div class="title_wip_desc" data-wip-prefixes="{{JsonUtils.EncodeToString .PullRequestWorkInProgressPrefixes}}">{{ctx.Locale.Tr "repo.pulls.title_wip_desc" (index .PullRequestWorkInProgressPrefixes 0)}}</div>
|
2018-08-13 22:04:39 +03:00
|
|
|
{{end}}
|
2015-12-08 01:30:52 +03:00
|
|
|
</div>
|
2023-03-22 00:04:17 +03:00
|
|
|
{{if .Fields}}
|
|
|
|
<input type="hidden" name="template-file" value="{{.TemplateFile}}">
|
|
|
|
{{range .Fields}}
|
|
|
|
{{if eq .Type "input"}}
|
2023-04-07 17:39:08 +03:00
|
|
|
{{template "repo/issue/fields/input" dict "Context" $.Context "item" .}}
|
2023-03-22 00:04:17 +03:00
|
|
|
{{else if eq .Type "markdown"}}
|
2023-04-07 17:39:08 +03:00
|
|
|
{{template "repo/issue/fields/markdown" dict "Context" $.Context "item" .}}
|
2023-03-22 00:04:17 +03:00
|
|
|
{{else if eq .Type "textarea"}}
|
2023-05-09 01:22:52 +03:00
|
|
|
{{template "repo/issue/fields/textarea" dict "Context" $.Context "item" . "root" $}}
|
2023-03-22 00:04:17 +03:00
|
|
|
{{else if eq .Type "dropdown"}}
|
2023-04-07 17:39:08 +03:00
|
|
|
{{template "repo/issue/fields/dropdown" dict "Context" $.Context "item" .}}
|
2023-03-22 00:04:17 +03:00
|
|
|
{{else if eq .Type "checkboxes"}}
|
2023-04-07 17:39:08 +03:00
|
|
|
{{template "repo/issue/fields/checkboxes" dict "Context" $.Context "item" .}}
|
2023-03-22 00:04:17 +03:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{else}}
|
|
|
|
{{template "repo/issue/comment_tab" .}}
|
|
|
|
{{end}}
|
2015-12-08 01:30:52 +03:00
|
|
|
<div class="text right">
|
2023-09-19 01:05:31 +03:00
|
|
|
<button class="ui primary button">
|
2015-08-31 10:24:28 +03:00
|
|
|
{{if .PageIsComparePull}}
|
2023-09-25 11:56:50 +03:00
|
|
|
{{ctx.Locale.Tr "repo.pulls.create"}}
|
2015-08-31 10:24:28 +03:00
|
|
|
{{else}}
|
2023-09-25 11:56:50 +03:00
|
|
|
{{ctx.Locale.Tr "repo.issues.create"}}
|
2015-08-31 10:24:28 +03:00
|
|
|
{{end}}
|
2015-08-09 20:04:23 +03:00
|
|
|
</button>
|
2015-12-08 01:30:52 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-09 10:23:02 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-09 20:04:23 +03:00
|
|
|
|
2023-05-29 13:44:03 +03:00
|
|
|
<div class="issue-content-right ui segment">
|
2024-04-24 21:41:35 +03:00
|
|
|
{{template "repo/issue/view_content/sidebar/branch_selector_field" .}}
|
2017-08-24 15:30:27 +03:00
|
|
|
|
2023-05-29 13:44:03 +03:00
|
|
|
<input id="label_ids" name="label_ids" type="hidden" value="{{.label_ids}}">
|
|
|
|
{{template "repo/issue/labels/labels_selector_field" .}}
|
|
|
|
{{template "repo/issue/labels/labels_sidebar" dict "root" $}}
|
2015-08-10 13:57:57 +03:00
|
|
|
|
2023-06-29 15:24:22 +03:00
|
|
|
<div class="divider"></div>
|
2015-08-10 13:57:57 +03:00
|
|
|
|
2023-05-29 13:44:03 +03:00
|
|
|
<input id="milestone_id" name="milestone_id" type="hidden" value="{{.milestone_id}}">
|
|
|
|
<div class="ui {{if not .HasIssuesOrPullsWritePermission}}disabled{{end}} floating jump select-milestone dropdown">
|
2023-07-04 20:45:45 +03:00
|
|
|
<span class="text flex-text-block">
|
2023-09-25 11:56:50 +03:00
|
|
|
<strong>{{ctx.Locale.Tr "repo.issues.new.milestone"}}</strong>
|
2023-05-29 13:44:03 +03:00
|
|
|
{{if .HasIssuesOrPullsWritePermission}}
|
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 19:42:49 +03:00
|
|
|
{{svg "octicon-gear" 16 "tw-ml-1"}}
|
2023-05-29 13:44:03 +03:00
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
<div class="menu">
|
2024-09-04 06:07:23 +03:00
|
|
|
{{template "repo/issue/milestone/select_menu" dict "." . "NewIssuePage" 1}}
|
2015-08-09 10:23:02 +03:00
|
|
|
</div>
|
2023-05-29 13:44:03 +03:00
|
|
|
</div>
|
|
|
|
<div class="ui select-milestone list">
|
2024-03-24 21:23:38 +03:00
|
|
|
<span class="no-select item {{if .Milestone}}tw-hidden{{end}}">{{ctx.Locale.Tr "repo.issues.new.no_milestone"}}</span>
|
2023-05-29 13:44:03 +03:00
|
|
|
<div class="selected">
|
|
|
|
{{if .Milestone}}
|
|
|
|
<a class="item muted sidebar-item-link" href="{{.RepoLink}}/issues?milestone={{.Milestone.ID}}">
|
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 19:42:49 +03:00
|
|
|
{{svg "octicon-milestone" 18 "tw-mr-2"}}
|
2023-05-29 13:44:03 +03:00
|
|
|
{{.Milestone.Name}}
|
|
|
|
</a>
|
|
|
|
{{end}}
|
2015-08-09 10:23:02 +03:00
|
|
|
</div>
|
2023-05-29 13:44:03 +03:00
|
|
|
</div>
|
2015-08-10 13:57:57 +03:00
|
|
|
|
2023-05-29 13:44:03 +03:00
|
|
|
{{if .IsProjectsEnabled}}
|
2023-06-29 15:24:22 +03:00
|
|
|
<div class="divider"></div>
|
2020-08-17 06:07:38 +03:00
|
|
|
|
2023-05-29 13:44:03 +03:00
|
|
|
<input id="project_id" name="project_id" type="hidden" value="{{.project_id}}">
|
|
|
|
<div class="ui {{if not .HasIssuesOrPullsWritePermission}}disabled{{end}} floating jump select-project dropdown">
|
2023-07-04 20:45:45 +03:00
|
|
|
<span class="text flex-text-block">
|
2023-09-25 11:56:50 +03:00
|
|
|
<strong>{{ctx.Locale.Tr "repo.issues.new.projects"}}</strong>
|
2023-05-29 13:44:03 +03:00
|
|
|
{{if .HasIssuesOrPullsWritePermission}}
|
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 19:42:49 +03:00
|
|
|
{{svg "octicon-gear" 16 "tw-ml-1"}}
|
2023-05-29 13:44:03 +03:00
|
|
|
{{end}}
|
|
|
|
</span>
|
|
|
|
<div class="menu">
|
|
|
|
{{if or .OpenProjects .ClosedProjects}}
|
|
|
|
<div class="ui icon search input">
|
2023-08-26 02:35:10 +03:00
|
|
|
<i class="icon">{{svg "octicon-search" 16}}</i>
|
2023-09-25 11:56:50 +03:00
|
|
|
<input type="text" placeholder="{{ctx.Locale.Tr "repo.issues.filter_projects"}}">
|
2023-05-29 13:44:03 +03:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2023-09-25 11:56:50 +03:00
|
|
|
<div class="no-select item">{{ctx.Locale.Tr "repo.issues.new.clear_projects"}}</div>
|
2023-05-29 13:44:03 +03:00
|
|
|
{{if and (not .OpenProjects) (not .ClosedProjects)}}
|
2023-05-29 17:10:06 +03:00
|
|
|
<div class="disabled item">
|
2023-09-25 11:56:50 +03:00
|
|
|
{{ctx.Locale.Tr "repo.issues.new.no_items"}}
|
2023-05-29 13:44:03 +03:00
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
{{if .OpenProjects}}
|
|
|
|
<div class="divider"></div>
|
|
|
|
<div class="header">
|
2023-09-25 11:56:50 +03:00
|
|
|
{{ctx.Locale.Tr "repo.issues.new.open_projects"}}
|
2023-05-29 13:44:03 +03:00
|
|
|
</div>
|
|
|
|
{{range .OpenProjects}}
|
2023-10-04 13:12:17 +03:00
|
|
|
<a class="item muted sidebar-item-link" data-id="{{.ID}}" data-href="{{.Link ctx}}">
|
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 19:42:49 +03:00
|
|
|
{{svg .IconName 18 "tw-mr-2"}}{{.Title}}
|
2023-05-29 13:44:03 +03:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{if .ClosedProjects}}
|
|
|
|
<div class="divider"></div>
|
|
|
|
<div class="header">
|
2023-09-25 11:56:50 +03:00
|
|
|
{{ctx.Locale.Tr "repo.issues.new.closed_projects"}}
|
2023-05-29 13:44:03 +03:00
|
|
|
</div>
|
|
|
|
{{range .ClosedProjects}}
|
2023-10-04 13:12:17 +03:00
|
|
|
<a class="item muted sidebar-item-link" data-id="{{.ID}}" data-href="{{.Link ctx}}">
|
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 19:42:49 +03:00
|
|
|
{{svg .IconName 18 "tw-mr-2"}}{{.Title}}
|
2023-05-29 13:44:03 +03:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="ui select-project list">
|
2024-03-24 21:23:38 +03:00
|
|
|
<span class="no-select item {{if .Project}}tw-hidden{{end}}">{{ctx.Locale.Tr "repo.issues.new.no_projects"}}</span>
|
2023-05-29 13:44:03 +03:00
|
|
|
<div class="selected">
|
|
|
|
{{if .Project}}
|
2023-10-08 09:35:20 +03:00
|
|
|
<a class="item muted sidebar-item-link" href="{{.Project.Link ctx}}">
|
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 19:42:49 +03:00
|
|
|
{{svg .Project.IconName 18 "tw-mr-2"}}{{.Project.Title}}
|
2023-05-29 13:44:03 +03:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2023-06-29 15:24:22 +03:00
|
|
|
<div class="divider"></div>
|
2024-10-08 11:39:52 +03:00
|
|
|
{{template "repo/issue/view_content/sidebar/assignees" dict "isExistingIssue" false "." .}}
|
2023-05-29 13:44:03 +03:00
|
|
|
{{if and .PageIsComparePull (not (eq .HeadRepo.FullName .BaseCompareRepo.FullName)) .CanWriteToHeadRepo}}
|
2023-06-29 15:24:22 +03:00
|
|
|
<div class="divider"></div>
|
2023-05-29 13:44:03 +03:00
|
|
|
<div class="inline field">
|
|
|
|
<div class="ui checkbox">
|
2023-09-25 15:42:40 +03:00
|
|
|
<label data-tooltip-content="{{ctx.Locale.Tr "repo.pulls.allow_edits_from_maintainers_desc"}}"><strong>{{ctx.Locale.Tr "repo.pulls.allow_edits_from_maintainers"}}</strong></label>
|
2023-05-29 13:44:03 +03:00
|
|
|
<input name="allow_maintainer_edit" type="checkbox" {{if .AllowMaintainerEdit}}checked{{end}}>
|
2018-05-09 19:29:04 +03:00
|
|
|
</div>
|
2023-05-29 13:44:03 +03:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2015-08-09 10:23:02 +03:00
|
|
|
</div>
|
2023-05-29 13:44:03 +03:00
|
|
|
<input type="hidden" name="redirect_after_creation" value="{{.redirect_after_creation}}">
|
2015-12-08 01:30:52 +03:00
|
|
|
</form>
|