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