2024-03-02 13:45:14 +01:00
|
|
|
{{if .Flash}}
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
{{end}}
|
2023-06-16 08:32:43 +02:00
|
|
|
<form class="issue-content ui comment form form-fetch-action" id="new-issue" action="{{.Link}}" method="post">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{.CsrfTokenHtml}}
|
2023-05-29 12:44:03 +02:00
|
|
|
<div class="issue-content-left">
|
2015-08-09 09:23:02 +02:00
|
|
|
<div class="ui comments">
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="comment">
|
2023-08-10 05:19:39 +02: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}/**/*
```
2024-03-24 17:42:49 +01:00
|
|
|
<div class="ui segment content tw-my-0">
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="field">
|
2024-03-27 08:20:10 +01: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 21:04:39 +02:00
|
|
|
{{if .PageIsComparePull}}
|
2024-02-25 15:02:20 +01: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 21:04:39 +02:00
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2023-03-21 22:04:17 +01:00
|
|
|
{{if .Fields}}
|
|
|
|
<input type="hidden" name="template-file" value="{{.TemplateFile}}">
|
|
|
|
{{range .Fields}}
|
|
|
|
{{if eq .Type "input"}}
|
2024-11-10 09:26:42 +01:00
|
|
|
{{template "repo/issue/fields/input" dict "item" .}}
|
2023-03-21 22:04:17 +01:00
|
|
|
{{else if eq .Type "markdown"}}
|
2024-11-10 09:26:42 +01:00
|
|
|
{{template "repo/issue/fields/markdown" dict "item" .}}
|
2023-03-21 22:04:17 +01:00
|
|
|
{{else if eq .Type "textarea"}}
|
2024-11-10 09:26:42 +01:00
|
|
|
{{template "repo/issue/fields/textarea" dict "item" . "root" $}}
|
2023-03-21 22:04:17 +01:00
|
|
|
{{else if eq .Type "dropdown"}}
|
2024-11-10 09:26:42 +01:00
|
|
|
{{template "repo/issue/fields/dropdown" dict "item" .}}
|
2023-03-21 22:04:17 +01:00
|
|
|
{{else if eq .Type "checkboxes"}}
|
2024-11-10 09:26:42 +01:00
|
|
|
{{template "repo/issue/fields/checkboxes" dict "item" .}}
|
2023-03-21 22:04:17 +01:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{else}}
|
|
|
|
{{template "repo/issue/comment_tab" .}}
|
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="text right">
|
2023-09-19 00:05:31 +02:00
|
|
|
<button class="ui primary button">
|
2015-08-31 09:24:28 +02:00
|
|
|
{{if .PageIsComparePull}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.pulls.create"}}
|
2015-08-31 09:24:28 +02:00
|
|
|
{{else}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.issues.create"}}
|
2015-08-31 09:24:28 +02:00
|
|
|
{{end}}
|
2015-08-09 19:04:23 +02:00
|
|
|
</button>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-09 09:23:02 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-09 19:04:23 +02:00
|
|
|
|
2023-05-29 12:44:03 +02:00
|
|
|
<div class="issue-content-right ui segment">
|
2024-11-09 05:48:31 +01:00
|
|
|
{{template "repo/issue/branch_selector_field" $}}
|
|
|
|
{{if .PageIsComparePull}}
|
2024-11-10 21:07:54 +01:00
|
|
|
{{template "repo/issue/sidebar/reviewer_list" $.IssuePageMetaData}}
|
2024-11-09 05:48:31 +01:00
|
|
|
<div class="divider"></div>
|
|
|
|
{{end}}
|
2017-08-24 14:30:27 +02:00
|
|
|
|
2024-11-10 21:07:54 +01:00
|
|
|
{{template "repo/issue/sidebar/label_list" $.IssuePageMetaData}}
|
|
|
|
{{template "repo/issue/sidebar/milestone_list" $.IssuePageMetaData}}
|
2023-05-29 12:44:03 +02:00
|
|
|
{{if .IsProjectsEnabled}}
|
2024-11-10 21:07:54 +01:00
|
|
|
{{template "repo/issue/sidebar/project_list" $.IssuePageMetaData}}
|
2023-05-29 12:44:03 +02:00
|
|
|
{{end}}
|
2024-11-10 21:07:54 +01:00
|
|
|
{{template "repo/issue/sidebar/assignee_list" $.IssuePageMetaData}}
|
|
|
|
|
2023-05-29 12:44:03 +02:00
|
|
|
{{if and .PageIsComparePull (not (eq .HeadRepo.FullName .BaseCompareRepo.FullName)) .CanWriteToHeadRepo}}
|
2023-06-29 14:24:22 +02:00
|
|
|
<div class="divider"></div>
|
2024-11-10 21:07:54 +01:00
|
|
|
<div class="ui checkbox">
|
|
|
|
<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>
|
|
|
|
<input name="allow_maintainer_edit" type="checkbox" {{if .AllowMaintainerEdit}}checked{{end}}>
|
2023-05-29 12:44:03 +02:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2015-08-09 09:23:02 +02:00
|
|
|
</div>
|
2023-05-29 12:44:03 +02:00
|
|
|
<input type="hidden" name="redirect_after_creation" value="{{.redirect_after_creation}}">
|
2015-12-07 23:30:52 +01:00
|
|
|
</form>
|