summaryrefslogtreecommitdiffstats
path: root/templates/repo/issue/new_form.tmpl
blob: c2cf4ee7a7887fc5d4dea35df00dbac2d334ccd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{{if .Flash}}
{{template "base/alert" .}}
{{end}}
<form class="issue-content ui comment form form-fetch-action" id="new-issue" action="{{.Link}}" method="post">
	{{.CsrfTokenHtml}}
	<div class="issue-content-left">
		<div class="ui comments">
			<div class="comment">
				{{ctx.AvatarUtils.Avatar .SignedUser 40}}
				<div class="ui segment content tw-my-0">
					<div class="field">
						<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">
						{{if .PageIsComparePull}}
							<div class="title_wip_desc" data-wip-prefixes="{{JsonUtils.EncodeToString .PullRequestWorkInProgressPrefixes}}">{{ctx.Locale.Tr "repo.pulls.title_wip_desc" (index .PullRequestWorkInProgressPrefixes 0)}}</div>
						{{end}}
					</div>
					{{if .Fields}}
						<input type="hidden" name="template-file" value="{{.TemplateFile}}">
						{{range .Fields}}
							{{if eq .Type "input"}}
								{{template "repo/issue/fields/input" dict "Context" $.Context "item" .}}
							{{else if eq .Type "markdown"}}
								{{template "repo/issue/fields/markdown" dict "Context" $.Context "item" .}}
							{{else if eq .Type "textarea"}}
								{{template "repo/issue/fields/textarea" dict "Context" $.Context "item" . "root" $}}
							{{else if eq .Type "dropdown"}}
								{{template "repo/issue/fields/dropdown" dict "Context" $.Context "item" .}}
							{{else if eq .Type "checkboxes"}}
								{{template "repo/issue/fields/checkboxes" dict "Context" $.Context "item" .}}
							{{end}}
						{{end}}
					{{else}}
						{{template "repo/issue/comment_tab" .}}
					{{end}}
					<div class="text right">
						<button class="ui primary button">
							{{if .PageIsComparePull}}
								{{ctx.Locale.Tr "repo.pulls.create"}}
							{{else}}
								{{ctx.Locale.Tr "repo.issues.create"}}
							{{end}}
						</button>
					</div>
				</div>
			</div>
		</div>
	</div>

	<div class="issue-content-right ui segment">
		{{template "repo/issue/view_content/sidebar/branch_selector_field" .}}

		<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" $}}

		<div class="divider"></div>

		<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">
			<span class="text flex-text-block">
				<strong>{{ctx.Locale.Tr "repo.issues.new.milestone"}}</strong>
				{{if .HasIssuesOrPullsWritePermission}}
					{{svg "octicon-gear" 16 "tw-ml-1"}}
				{{end}}
			</span>
			<div class="menu">
				{{template "repo/issue/milestone/select_menu" dict "." . "NewIssuePage" 1}}
			</div>
		</div>
		<div class="ui select-milestone list">
			<span class="no-select item {{if .Milestone}}tw-hidden{{end}}">{{ctx.Locale.Tr "repo.issues.new.no_milestone"}}</span>
			<div class="selected">
				{{if .Milestone}}
					<a class="item muted sidebar-item-link" href="{{.RepoLink}}/issues?milestone={{.Milestone.ID}}">
						{{svg "octicon-milestone" 18 "tw-mr-2"}}
						{{.Milestone.Name}}
					</a>
				{{end}}
			</div>
		</div>

		{{if .IsProjectsEnabled}}
		<div class="divider"></div>

		<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">
			<span class="text flex-text-block">
				<strong>{{ctx.Locale.Tr "repo.issues.new.projects"}}</strong>
				{{if .HasIssuesOrPullsWritePermission}}
					{{svg "octicon-gear" 16 "tw-ml-1"}}
				{{end}}
			</span>
			<div class="menu">
				{{if or .OpenProjects .ClosedProjects}}
				<div class="ui icon search input">
					<i class="icon">{{svg "octicon-search" 16}}</i>
					<input type="text" placeholder="{{ctx.Locale.Tr "repo.issues.filter_projects"}}">
				</div>
				{{end}}
				<div class="no-select item">{{ctx.Locale.Tr "repo.issues.new.clear_projects"}}</div>
				{{if and (not .OpenProjects) (not .ClosedProjects)}}
					<div class="disabled item">
						{{ctx.Locale.Tr "repo.issues.new.no_items"}}
					</div>
				{{else}}
					{{if .OpenProjects}}
						<div class="divider"></div>
						<div class="header">
							{{ctx.Locale.Tr "repo.issues.new.open_projects"}}
						</div>
						{{range .OpenProjects}}
							<a class="item muted sidebar-item-link" data-id="{{.ID}}" data-href="{{.Link ctx}}">
								{{svg .IconName 18 "tw-mr-2"}}{{.Title}}
							</a>
						{{end}}
					{{end}}
					{{if .ClosedProjects}}
						<div class="divider"></div>
						<div class="header">
							{{ctx.Locale.Tr "repo.issues.new.closed_projects"}}
						</div>
						{{range .ClosedProjects}}
							<a class="item muted sidebar-item-link" data-id="{{.ID}}" data-href="{{.Link ctx}}">
								{{svg .IconName 18 "tw-mr-2"}}{{.Title}}
							</a>
						{{end}}
					{{end}}
				{{end}}
			</div>
		</div>
		<div class="ui select-project list">
			<span class="no-select item {{if .Project}}tw-hidden{{end}}">{{ctx.Locale.Tr "repo.issues.new.no_projects"}}</span>
			<div class="selected">
				{{if .Project}}
					<a class="item muted sidebar-item-link" href="{{.Project.Link ctx}}">
						{{svg .Project.IconName 18 "tw-mr-2"}}{{.Project.Title}}
					</a>
				{{end}}
			</div>
		</div>
		{{end}}
		<div class="divider"></div>
		{{template "repo/issue/view_content/sidebar/assignees" dict "isExistingIssue" false "." .}}
		{{if and .PageIsComparePull (not (eq .HeadRepo.FullName .BaseCompareRepo.FullName)) .CanWriteToHeadRepo}}
			<div class="divider"></div>
			<div class="inline field">
				<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}}>
				</div>
			</div>
		{{end}}
	</div>
	<input type="hidden" name="redirect_after_creation" value="{{.redirect_after_creation}}">
</form>