2023-06-16 14:32:43 +08: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 }}
{{ if .Flash }}
<div class="sixteen wide column">
{{ template "base/alert" . }}
</div>
{{ end }}
2023-05-29 12:44:03 +02:00
<div class="issue-content-left">
2015-08-09 15:23:02 +08:00
<div class="ui comments">
2015-12-07 23:30:52 +01:00
<div class="comment">
2023-08-10 11:19:39 +08:00
{{ ctx .AvatarUtils .Avatar .SignedUser 4 0 }}
2023-05-29 12:44:03 +02:00
<div class="ui segment content gt-my-0">
2015-12-07 23:30:52 +01:00
<div class="field">
2023-09-25 10:56:50 +02:00
<input name="title" id="issue_title" placeholder=" {{ ctx .Locale .Tr "repo.milestones.title" }} " value=" {{ if .TitleQuery }} {{ .TitleQuery }} {{ else if .IssueTemplateTitle }} {{ .IssueTemplateTitle }} {{ else }} {{ .title }} {{ end }} " autofocus required maxlength="255" autocomplete="off">
2018-08-13 21:04:39 +02:00
{{ if .PageIsComparePull }}
2024-02-23 01:02:33 +08:00
<div class="title_wip_desc" data-wip-prefixes=" {{ JsonUtils .EncodeToString .PullRequestWorkInProgressPrefixes }} "> {{ ctx .Locale .Tr "repo.pulls.title_wip_desc" ( in dex .PullRequestWorkInProgressPrefixes 0 | Escape ) }} </div>
2018-08-13 21:04:39 +02:00
{{ end }}
2015-12-07 23:30:52 +01:00
</div>
2023-03-22 05:04:17 +08:00
{{ if .Fields }}
<input type="hidden" name="template-file" value=" {{ .TemplateFile }} ">
{{ range .Fields }}
{{ if eq .Type "input" }}
2023-04-07 22:39:08 +08:00
{{ template "repo/issue/fields/input" dict "Context" $ .Context "item" . }}
2023-03-22 05:04:17 +08:00
{{ else if eq .Type "markdown" }}
2023-04-07 22:39:08 +08:00
{{ template "repo/issue/fields/markdown" dict "Context" $ .Context "item" . }}
2023-03-22 05:04:17 +08:00
{{ else if eq .Type "textarea" }}
2023-05-09 07:22:52 +09:00
{{ template "repo/issue/fields/textarea" dict "Context" $ .Context "item" . "root" $ }}
2023-03-22 05:04:17 +08:00
{{ else if eq .Type "dropdown" }}
2023-04-07 22:39:08 +08:00
{{ template "repo/issue/fields/dropdown" dict "Context" $ .Context "item" . }}
2023-03-22 05:04:17 +08:00
{{ else if eq .Type "checkboxes" }}
2023-04-07 22:39:08 +08:00
{{ template "repo/issue/fields/checkboxes" dict "Context" $ .Context "item" . }}
2023-03-22 05:04:17 +08: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 16:24:28 +09:00
{{ if .PageIsComparePull }}
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.pulls.create" }}
2015-08-31 16:24:28 +09:00
{{ else }}
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.issues.create" }}
2015-08-31 16:24:28 +09:00
{{ end }}
2015-08-10 01:04:23 +08:00
</button>
2015-12-07 23:30:52 +01:00
</div>
</div>
</div>
2015-08-09 15:23:02 +08:00
</div>
</div>
2015-08-10 01:04:23 +08:00
2023-05-29 12:44:03 +02:00
<div class="issue-content-right ui segment">
{{ template "repo/issue/branch_selector_field" . }}
2017-08-24 14:30:27 +02:00
2023-05-29 12:44:03 +02: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 18:57:57 +08:00
2023-06-29 14:24:22 +02:00
<div class="divider"></div>
2015-08-10 18:57:57 +08:00
2023-05-29 12:44:03 +02: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 19:45:45 +02:00
<span class="text flex-text-block">
2023-09-25 10:56:50 +02:00
<strong> {{ ctx .Locale .Tr "repo.issues.new.milestone" }} </strong>
2023-05-29 12:44:03 +02:00
{{ if .HasIssuesOrPullsWritePermission }}
2023-07-04 19:45:45 +02:00
{{ svg "octicon-gear" 1 6 "gt-ml-2" }}
2023-05-29 12:44:03 +02:00
{{ end }}
</span>
<div class="menu">
{{ template "repo/issue/milestone/select_menu" . }}
2015-08-09 15:23:02 +08:00
</div>
2023-05-29 12:44:03 +02:00
</div>
<div class="ui select-milestone list">
2023-09-25 10:56:50 +02:00
<span class="no-select item {{ if .Milestone }} gt-hidden {{ end }} "> {{ ctx .Locale .Tr "repo.issues.new.no_milestone" }} </span>
2023-05-29 12:44:03 +02:00
<div class="selected">
{{ if .Milestone }}
<a class="item muted sidebar-item-link" href=" {{ .RepoLink }} /issues?milestone= {{ .Milestone .ID }} ">
{{ svg "octicon-milestone" 1 8 "gt-mr-3" }}
{{ .Milestone .Name }}
</a>
{{ end }}
2015-08-09 15:23:02 +08:00
</div>
2023-05-29 12:44:03 +02:00
</div>
2015-08-10 18:57:57 +08:00
2023-05-29 12:44:03 +02:00
{{ if .IsProjectsEnabled }}
2023-06-29 14:24:22 +02:00
<div class="divider"></div>
2020-08-17 04:07:38 +01:00
2023-05-29 12:44:03 +02: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 19:45:45 +02:00
<span class="text flex-text-block">
2023-09-25 10:56:50 +02:00
<strong> {{ ctx .Locale .Tr "repo.issues.new.projects" }} </strong>
2023-05-29 12:44:03 +02:00
{{ if .HasIssuesOrPullsWritePermission }}
2023-07-04 19:45:45 +02:00
{{ svg "octicon-gear" 1 6 "gt-ml-2" }}
2023-05-29 12:44:03 +02:00
{{ end }}
</span>
<div class="menu">
{{ if or .OpenProjects .ClosedProjects }}
<div class="ui icon search input">
2023-08-26 07:35:10 +08:00
<i class="icon"> {{ svg "octicon-search" 1 6 }} </i>
2023-09-25 10:56:50 +02:00
<input type="text" placeholder=" {{ ctx .Locale .Tr "repo.issues.filter_projects" }} ">
2023-05-29 12:44:03 +02:00
</div>
{{ end }}
2023-09-25 10:56:50 +02:00
<div class="no-select item"> {{ ctx .Locale .Tr "repo.issues.new.clear_projects" }} </div>
2023-05-29 12:44:03 +02:00
{{ if and ( not .OpenProjects ) ( not .ClosedProjects ) }}
2023-05-29 16:10:06 +02:00
<div class="disabled item">
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.issues.new.no_items" }}
2023-05-29 12:44:03 +02:00
</div>
{{ else }}
{{ if .OpenProjects }}
<div class="divider"></div>
<div class="header">
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.issues.new.open_projects" }}
2023-05-29 12:44:03 +02:00
</div>
{{ range .OpenProjects }}
2023-10-04 18:12:17 +08:00
<a class="item muted sidebar-item-link" data-id=" {{ .ID }} " data-href=" {{ .Link ctx }} ">
2023-05-29 12:44:03 +02:00
{{ svg .IconName 1 8 "gt-mr-3" }} {{ .Title }}
</a>
{{ end }}
{{ end }}
{{ if .ClosedProjects }}
<div class="divider"></div>
<div class="header">
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.issues.new.closed_projects" }}
2023-05-29 12:44:03 +02:00
</div>
{{ range .ClosedProjects }}
2023-10-04 18:12:17 +08:00
<a class="item muted sidebar-item-link" data-id=" {{ .ID }} " data-href=" {{ .Link ctx }} ">
2023-05-29 12:44:03 +02:00
{{ svg .IconName 1 8 "gt-mr-3" }} {{ .Title }}
</a>
{{ end }}
{{ end }}
{{ end }}
</div>
</div>
<div class="ui select-project list">
2023-09-25 10:56:50 +02:00
<span class="no-select item {{ if .Project }} gt-hidden {{ end }} "> {{ ctx .Locale .Tr "repo.issues.new.no_projects" }} </span>
2023-05-29 12:44:03 +02: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 }} ">
2023-05-29 12:44:03 +02:00
{{ svg .Project .IconName 1 8 "gt-mr-3" }} {{ .Project .Title }}
</a>
{{ end }}
</div>
</div>
{{ end }}
2023-06-29 14:24:22 +02:00
<div class="divider"></div>
2023-05-29 12:44:03 +02:00
<input id="assignee_ids" name="assignee_ids" type="hidden" value=" {{ .assignee_ids }} ">
<div class="ui {{ if not .HasIssuesOrPullsWritePermission }} disabled {{ end }} floating jump select-assignees dropdown">
2023-07-04 19:45:45 +02:00
<span class="text flex-text-block">
2023-09-25 10:56:50 +02:00
<strong> {{ ctx .Locale .Tr "repo.issues.new.assignees" }} </strong>
2020-11-29 07:22:04 +01:00
{{ if .HasIssuesOrPullsWritePermission }}
2023-07-04 19:45:45 +02:00
{{ svg "octicon-gear" 1 6 "gt-ml-2" }}
2020-11-29 07:22:04 +01:00
{{ end }}
</span>
2023-05-29 12:44:03 +02:00
<div class="filter menu" data-id="#assignee_ids">
2020-11-29 07:22:04 +01:00
<div class="ui icon search input">
2023-08-26 07:35:10 +08:00
<i class="icon"> {{ svg "octicon-search" 1 6 }} </i>
2023-09-25 10:56:50 +02:00
<input type="text" placeholder=" {{ ctx .Locale .Tr "repo.issues.filter_assignees" }} ">
2020-11-29 07:22:04 +01:00
</div>
2023-09-25 10:56:50 +02:00
<div class="no-select item"> {{ ctx .Locale .Tr "repo.issues.new.clear_assignees" }} </div>
2023-05-29 12:44:03 +02:00
{{ range .Assignees }}
<a class="item muted" href="#" data-id=" {{ .ID }} " data-id-selector="#assignee_ {{ .ID }} ">
2023-08-31 18:49:53 +08:00
<span class="octicon-check gt-invisible"> {{ svg "octicon-check" }} </span>
2023-05-29 12:44:03 +02:00
<span class="text">
2023-08-10 11:19:39 +08:00
{{ ctx .AvatarUtils .Avatar . 2 8 "gt-mr-3" }} {{ template "repo/search_name" . }}
2023-05-29 12:44:03 +02:00
</span>
2020-11-29 07:22:04 +01:00
</a>
{{ end }}
</div>
2020-08-17 04:07:38 +01:00
</div>
2023-05-29 12:44:03 +02:00
<div class="ui assignees list">
<span class="no-select item {{ if .HasSelectedLabel }} gt-hidden {{ end }} ">
2023-09-25 10:56:50 +02:00
{{ ctx .Locale .Tr "repo.issues.new.no_assignees" }}
2023-05-29 12:44:03 +02:00
</span>
2023-08-04 23:14:30 +09:00
<div class="selected">
2023-05-29 12:44:03 +02:00
{{ range .Assignees }}
<a class="item gt-p-2 muted gt-hidden" id="assignee_ {{ .ID }} " href=" {{ $ .RepoLink }} /issues?assignee= {{ .ID }} ">
2023-08-10 11:19:39 +08:00
{{ ctx .AvatarUtils .Avatar . 2 8 "gt-mr-3 gt-vm" }} {{ .GetDisplayName }}
2023-05-29 12:44:03 +02:00
</a>
{{ end }}
2023-08-04 23:14:30 +09:00
</div>
2023-05-29 12:44:03 +02:00
</div>
{{ if and .PageIsComparePull ( not ( eq .HeadRepo .FullName .BaseCompareRepo .FullName ) ) .CanWriteToHeadRepo }}
2023-06-29 14:24:22 +02:00
<div class="divider"></div>
2023-05-29 12:44:03 +02:00
<div class="inline field">
<div class="ui checkbox">
2023-09-25 20:42:40 +08: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 12:44:03 +02:00
<input name="allow_maintainer_edit" type="checkbox" {{ if .AllowMaintainerEdit }} checked {{ end }} >
2018-05-09 18:29:04 +02:00
</div>
2023-05-29 12:44:03 +02:00
</div>
{{ end }}
2015-08-09 15:23:02 +08: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>