summaryrefslogtreecommitdiffstats
path: root/templates/repo/release/new.tmpl
blob: 217196f6cfb919da9fa904058fdc5796beabae45 (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
{{template "base/head" .}}
<div role="main" aria-label="{{.Title}}" class="page-content repository new release">
	{{template "repo/header" .}}
	<div class="ui container">
		<h2 class="ui dividing header">
			{{if .PageIsEditRelease}}
				{{.locale.Tr "repo.release.edit_release"}}
				<div class="sub header">{{.locale.Tr "repo.release.edit_subheader"}}</div>
			{{else}}
				{{.locale.Tr "repo.release.new_release"}}
				<div class="sub header">{{.locale.Tr "repo.release.new_subheader"}}</div>
			{{end}}
		</h2>
		{{template "base/alert" .}}
		<form class="ui form" action="{{.Link}}" method="post">
			{{.CsrfTokenHtml}}
			<div class="ui seven wide target">
				<div class="inline field {{if .Err_TagName}}error{{end}}">
					{{if .PageIsEditRelease}}
						<b>{{.tag_name}}</b><span class="at">@</span><strong>{{.tag_target}}</strong>
					{{else}}
						<input id="tag-name" name="tag_name" value="{{.tag_name}}" aria-label="{{.locale.Tr "repo.release.tag_name"}}" placeholder="{{.locale.Tr "repo.release.tag_name"}}" autofocus required maxlength="255">
						<input id="tag-name-editor" type="hidden" data-existing-tags="{{JsonUtils.EncodeToString .Tags}}" data-tag-helper="{{.locale.Tr "repo.release.tag_helper"}}" data-tag-helper-new="{{.locale.Tr "repo.release.tag_helper_new"}}" data-tag-helper-existing="{{.locale.Tr "repo.release.tag_helper_existing"}}">
						<div id="tag-target-selector" class="gt-dib">
							<span class="at">@</span>
							<div class="ui selection dropdown">
								<input type="hidden" name="tag_target" value="{{.tag_target}}">
								{{svg "octicon-git-branch"}}
								<div class="text">
									{{.locale.Tr "repo.release.target"}} :
									<strong id="repo-branch-current">{{.Repository.DefaultBranch}}</strong>
								</div>
								{{svg "octicon-triangle-down" 14 "dropdown icon"}}
								<div class="menu">
									{{range .Branches}}
										<div class="item" data-value="{{.}}">{{.}}</div>
									{{end}}
								</div>
							</div>
						</div>
						<div>
							<span id="tag-helper" class="help gt-mt-3 gt-pb-0">{{.locale.Tr "repo.release.tag_helper"}}</span>
						</div>
					{{end}}
				</div>
			</div>
			<div class="eleven wide gt-pt-0">
				<div class="field {{if .Err_Title}}error{{end}}">
					<input name="title" aria-label="{{.locale.Tr "repo.release.title"}}" placeholder="{{.locale.Tr "repo.release.title"}}" value="{{.title}}" autofocus maxlength="255">
				</div>
				<div class="field">
					{{template "shared/combomarkdowneditor" (dict
						"MarkdownPreviewUrl" (print .Repository.Link "/markup")
						"MarkdownPreviewContext" .RepoLink
						"TextareaName" "content"
						"TextareaContent" .content
						"TextareaPlaceholder" (.locale.Tr "repo.release.message")
						"TextareaAriaLabel" (.locale.Tr "repo.release.message")
						"DropzoneParentContainer" "form"
					)}}
				</div>
				{{range .attachments}}
					<div class="field flex-text-block" id="attachment-{{.ID}}">
						<div class="flex-text-inline gt-f1">
							<input name="attachment-edit-{{.UUID}}"  class="attachment_edit" required value="{{.Name}}">
							<input name="attachment-del-{{.UUID}}" type="hidden" value="false">
							<span class="ui text grey gt-whitespace-nowrap">{{.Size | FileSize}}</span>
							<span data-tooltip-content="{{$.locale.Tr "repo.release.download_count" ($.locale.PrettyNumber .DownloadCount)}}">
								{{svg "octicon-info"}}
							</span>
						</div>
						<a class="ui mini compact red button remove-rel-attach" data-id="{{.ID}}" data-uuid="{{.UUID}}">
							{{$.locale.Tr "remove"}}
						</a>
					</div>
				{{end}}
				{{if .IsAttachmentEnabled}}
					<div class="field">
						{{template "repo/upload" .}}
					</div>
				{{end}}
			</div>
			<div class="divider"></div>
			<div class="ui">
				<div>
					{{if not .PageIsEditRelease}}
						<div class="tag-message field">
							<div class="ui checkbox">
								<input type="checkbox" name="add_tag_msg">
								<label><strong>{{.locale.Tr "repo.release.add_tag_msg"}}</strong></label>
							</div>
						</div>
					{{else}}
						<input type="hidden" name="add_tag_msg" value="false">
					{{end}}
					<div class="prerelease field">
						<div class="ui checkbox">
							<input type="checkbox" name="prerelease" {{if .prerelease}}checked{{end}}>
							<label><strong>{{.locale.Tr "repo.release.prerelease_desc"}}</strong></label>
						</div>
					</div>
					<span class="help">{{.locale.Tr "repo.release.prerelease_helper"}}</span>
					<div class="divider gt-mt-0"></div>
					<div class="gt-df gt-je">
						{{if .PageIsEditRelease}}
							<a class="ui small button" href="{{.RepoLink}}/releases">
								{{.locale.Tr "repo.release.cancel"}}
							</a>
							<a class="ui small red button delete-button" data-url="{{$.RepoLink}}/releases/delete" data-id="{{.ID}}">
								{{$.locale.Tr "repo.release.delete_release"}}
							</a>
							{{if .IsDraft}}
								<button class="ui small button" type="submit" name="draft" value="{{.locale.Tr "repo.release.save_draft"}}">{{.locale.Tr "repo.release.save_draft"}}</button>
								<button class="ui small primary button">
									{{.locale.Tr "repo.release.publish"}}
								</button>
							{{else}}
								<button class="ui small primary button">
									{{.locale.Tr "repo.release.edit_release"}}
								</button>
							{{end}}
						{{else}}
							<button class="ui small primary button">
								{{.locale.Tr "repo.release.publish"}}
							</button>
						{{end}}
					</div>
				</div>
			</div>
		</form>
	</div>
</div>

{{if .PageIsEditRelease}}
	<div class="ui g-modal-confirm delete modal">
		<div class="header">
			{{svg "octicon-trash"}}
			{{.locale.Tr "repo.release.deletion"}}
		</div>
		<div class="content">
			<p>{{.locale.Tr "repo.release.deletion_desc"}}</p>
		</div>
		{{template "base/modal_actions_confirm" .}}
	</div>
{{end}}
{{template "base/footer" .}}