2015-11-15 23:52:46 -05:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 17:56:10 -05:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository new release">
|
2015-12-07 17:30:52 -05:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
<h2 class="ui dividing header">
|
|
|
|
{{if .PageIsEditRelease}}
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "repo.release.edit_release"}}
|
|
|
|
<div class="sub header">{{.locale.Tr "repo.release.edit_subheader"}}</div>
|
2015-12-07 17:30:52 -05:00
|
|
|
{{else}}
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "repo.release.new_release"}}
|
|
|
|
<div class="sub header">{{.locale.Tr "repo.release.new_subheader"}}</div>
|
2015-12-07 17:30:52 -05:00
|
|
|
{{end}}
|
|
|
|
</h2>
|
|
|
|
{{template "base/alert" .}}
|
2018-07-26 11:25:41 -04:00
|
|
|
<form class="ui form stackable grid" action="{{.Link}}" method="post">
|
2015-12-07 17:30:52 -05:00
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="ui seven wide column 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}}
|
2023-04-10 11:56:57 -04:00
|
|
|
<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">
|
2023-04-29 08:02:29 -04:00
|
|
|
<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"}}">
|
2023-03-10 11:42:38 -05:00
|
|
|
<div id="tag-target-selector" class="gt-dib">
|
|
|
|
<span class="at">@</span>
|
|
|
|
<div class="ui selection dropdown">
|
2023-03-27 12:05:51 -04:00
|
|
|
<input type="hidden" name="tag_target" value="{{.tag_target}}">
|
2023-03-10 11:42:38 -05:00
|
|
|
{{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>
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-03-10 11:42:38 -05:00
|
|
|
<div>
|
2023-04-10 11:56:57 -04:00
|
|
|
<span id="tag-helper" class="help gt-mt-3 gt-pb-0">{{.locale.Tr "repo.release.tag_helper"}}</span>
|
2023-03-10 11:42:38 -05:00
|
|
|
</div>
|
2015-12-07 17:30:52 -05:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-10 11:56:57 -04:00
|
|
|
<div class="eleven wide column gt-pt-0">
|
2015-12-07 17:30:52 -05:00
|
|
|
<div class="field {{if .Err_Title}}error{{end}}">
|
2023-04-10 11:56:57 -04:00
|
|
|
<input name="title" aria-label="{{.locale.Tr "repo.release.title"}}" placeholder="{{.locale.Tr "repo.release.title"}}" value="{{.title}}" autofocus maxlength="255">
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
2023-04-03 06:06:57 -04:00
|
|
|
<div class="field">
|
|
|
|
{{template "shared/combomarkdowneditor" (dict
|
|
|
|
"locale" $.locale
|
|
|
|
"MarkdownPreviewUrl" (print .Repository.Link "/markup")
|
|
|
|
"MarkdownPreviewContext" .RepoLink
|
|
|
|
"TextareaName" "content"
|
|
|
|
"TextareaContent" .content
|
2023-04-10 11:56:57 -04:00
|
|
|
"TextareaPlaceholder" (.locale.Tr "repo.release.message")
|
|
|
|
"TextareaAriaLabel" (.locale.Tr "repo.release.message")
|
2023-04-03 06:06:57 -04:00
|
|
|
"DropzoneParentContainer" "form"
|
|
|
|
)}}
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
2021-03-22 12:09:51 -04:00
|
|
|
{{range .attachments}}
|
|
|
|
<div class="field" id="attachment-{{.ID}}">
|
2023-02-13 12:59:59 -05:00
|
|
|
<div class="ui right gt-df gt-ac wrap_remove">
|
2021-03-22 12:09:51 -04:00
|
|
|
<a class="ui mini compact red button remove-rel-attach" data-id="{{.ID}}" data-uuid="{{.UUID}}">
|
2022-06-27 16:58:46 -04:00
|
|
|
{{$.locale.Tr "remove"}}
|
2021-03-22 12:09:51 -04:00
|
|
|
</a>
|
|
|
|
</div>
|
2023-02-13 12:59:59 -05:00
|
|
|
<div class="gt-df gt-ac">
|
2023-03-27 12:05:51 -04:00
|
|
|
<input name="attachment-edit-{{.UUID}}" class="gt-mr-3 attachment_edit" required value="{{.Name}}">
|
|
|
|
<input name="attachment-del-{{.UUID}}" type="hidden" value="false">
|
2023-02-13 12:59:59 -05:00
|
|
|
<span class="ui text grey gt-mr-3">{{.Size | FileSize}}</span>
|
2023-04-16 23:37:23 -04:00
|
|
|
<span data-tooltip-content="{{$.locale.Tr "repo.release.download_count" ($.locale.PrettyNumber .DownloadCount)}}">
|
2021-03-22 12:09:51 -04:00
|
|
|
{{svg "octicon-info"}}
|
2023-04-16 23:37:23 -04:00
|
|
|
</span>
|
2021-03-22 12:09:51 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2017-01-15 09:57:00 -05:00
|
|
|
{{if .IsAttachmentEnabled}}
|
2020-10-05 01:49:33 -04:00
|
|
|
<div class="field">
|
|
|
|
{{template "repo/upload" .}}
|
|
|
|
</div>
|
2017-01-15 09:57:00 -05:00
|
|
|
{{end}}
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
|
|
|
<div class="ui container">
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
<div class="ui text right">
|
2021-02-28 14:57:45 -05:00
|
|
|
{{if not .PageIsEditRelease}}
|
|
|
|
<div class="tag-message field">
|
|
|
|
<div class="ui checkbox">
|
|
|
|
<input type="checkbox" name="add_tag_msg">
|
2022-06-27 16:58:46 -04:00
|
|
|
<label><strong>{{.locale.Tr "repo.release.add_tag_msg"}}</strong></label>
|
2021-02-28 14:57:45 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
|
|
<input type="hidden" name="add_tag_msg" value="false">
|
|
|
|
{{end}}
|
2015-12-07 17:30:52 -05:00
|
|
|
<div class="prerelease field">
|
|
|
|
<div class="ui checkbox">
|
|
|
|
<input type="checkbox" name="prerelease" {{if .prerelease}}checked{{end}}>
|
2022-06-27 16:58:46 -04:00
|
|
|
<label><strong>{{.locale.Tr "repo.release.prerelease_desc"}}</strong></label>
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-27 16:58:46 -04:00
|
|
|
<span class="help">{{.locale.Tr "repo.release.prerelease_helper"}}</span>
|
2015-12-07 17:30:52 -05:00
|
|
|
<div class="field">
|
|
|
|
{{if .PageIsEditRelease}}
|
2020-11-29 01:22:04 -05:00
|
|
|
<a class="ui button" href="{{.RepoLink}}/releases">
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "repo.release.cancel"}}
|
2015-12-07 17:30:52 -05:00
|
|
|
</a>
|
2020-11-29 01:22:04 -05:00
|
|
|
<a class="ui red button delete-button" data-url="{{$.RepoLink}}/releases/delete" data-id="{{.ID}}">
|
2022-06-27 16:58:46 -04:00
|
|
|
{{$.locale.Tr "repo.release.delete_release"}}
|
2020-11-29 01:22:04 -05:00
|
|
|
</a>
|
2016-11-14 11:30:22 -05:00
|
|
|
{{if .IsDraft}}
|
2023-03-13 23:34:09 -04:00
|
|
|
<button class="ui button" type="submit" name="draft" value="{{.locale.Tr "repo.release.save_draft"}}">{{.locale.Tr "repo.release.save_draft"}}</button>
|
2020-11-29 01:22:04 -05:00
|
|
|
<button class="ui primary button">
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "repo.release.publish"}}
|
2016-11-14 11:30:22 -05:00
|
|
|
</button>
|
|
|
|
{{else}}
|
2020-11-29 01:22:04 -05:00
|
|
|
<button class="ui primary button">
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "repo.release.edit_release"}}
|
2016-11-14 11:30:22 -05:00
|
|
|
</button>
|
|
|
|
{{end}}
|
2015-12-07 17:30:52 -05:00
|
|
|
{{else}}
|
2021-02-28 14:57:45 -05:00
|
|
|
{{if not .tag_name}}
|
2023-03-13 23:34:09 -04:00
|
|
|
<button class="ui grey button" type="submit" name="tag_only" value="{{.locale.Tr "repo.release.add_tag"}}">{{.locale.Tr "repo.release.add_tag"}}</button>
|
2021-02-28 14:57:45 -05:00
|
|
|
{{end}}
|
2023-03-13 23:34:09 -04:00
|
|
|
<button class="ui button" type="submit" name="draft" value="{{.locale.Tr "repo.release.save_draft"}}">{{.locale.Tr "repo.release.save_draft"}}</button>
|
2020-11-29 01:22:04 -05:00
|
|
|
<button class="ui primary button">
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "repo.release.publish"}}
|
2015-12-07 17:30:52 -05:00
|
|
|
</button>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2014-04-06 02:54:28 -04:00
|
|
|
</div>
|
2015-11-20 02:38:41 -05:00
|
|
|
|
|
|
|
{{if .PageIsEditRelease}}
|
2023-04-24 07:08:59 -04:00
|
|
|
<div class="ui g-modal-confirm delete modal">
|
2023-04-23 05:24:19 -04:00
|
|
|
<div class="header">
|
2021-03-22 00:04:19 -04:00
|
|
|
{{svg "octicon-trash"}}
|
2022-06-27 16:58:46 -04:00
|
|
|
{{.locale.Tr "repo.release.deletion"}}
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2022-06-27 16:58:46 -04:00
|
|
|
<p>{{.locale.Tr "repo.release.deletion_desc"}}</p>
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
2023-04-23 05:24:19 -04:00
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
2015-11-20 02:38:41 -05:00
|
|
|
{{end}}
|
2015-12-07 17:30:52 -05:00
|
|
|
{{template "base/footer" .}}
|