2015-11-15 23:52:46 -05:00
{{ template "base/head" . }}
2023-02-01 19:56:10 -03:00
<div role="main" aria-label=" {{ .Title }} " class="page-content repository new release">
2015-12-07 23:30:52 +01:00
{{ template "repo/header" . }}
<div class="ui container">
<h2 class="ui dividing header">
{{ if .PageIsEditRelease }}
2022-06-27 22:58:46 +02:00
{{ .locale .Tr "repo.release.edit_release" }}
<div class="sub header"> {{ .locale .Tr "repo.release.edit_subheader" }} </div>
2015-12-07 23:30:52 +01:00
{{ else }}
2022-06-27 22:58:46 +02:00
{{ .locale .Tr "repo.release.new_release" }}
<div class="sub header"> {{ .locale .Tr "repo.release.new_subheader" }} </div>
2015-12-07 23:30:52 +01:00
{{ end }}
</h2>
{{ template "base/alert" . }}
2018-07-26 17:25:41 +02:00
<form class="ui form stackable grid" action=" {{ .Link }} " method="post">
2015-12-07 23:30:52 +01: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 }}
2022-06-27 22:58:46 +02:00
<input id="tag-name" name="tag_name" value=" {{ .tag_name }} " placeholder=" {{ .locale .Tr "repo.release.tag_name" }} " autofocus required maxlength="255">
2015-12-07 23:30:52 +01:00
<span class="at">@</span>
<div class="ui selection dropdown">
<input type="hidden" name="tag_target" value=" {{ .tag_target }} "/>
2020-09-11 22:19:00 +02:00
{{ svg "octicon-git-branch" }}
2015-12-07 23:30:52 +01:00
<div class="text">
2022-06-27 22:58:46 +02:00
{{ .locale .Tr "repo.release.target" }} :
2015-12-07 23:30:52 +01:00
<strong id="repo-branch-current"> {{ .Repository .DefaultBranch }} </strong>
</div>
2020-10-31 23:15:11 +01:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2015-12-07 23:30:52 +01:00
<div class="menu">
{{ range .Branches }}
<div class="item" data-value=" {{ . }} "> {{ . }} </div>
{{ end }}
</div>
</div>
2022-06-27 22:58:46 +02:00
<span class="help"> {{ .locale .Tr "repo.release.tag_helper" }} </span>
2015-12-07 23:30:52 +01:00
{{ end }}
</div>
</div>
<div class="eleven wide column">
<div class="field {{ if .Err_Title }} error {{ end }} ">
2022-06-27 22:58:46 +02:00
<label> {{ .locale .Tr "repo.release.title" }} </label>
<input name="title" placeholder=" {{ .locale .Tr "repo.release.title" }} " value=" {{ .title }} " autofocus required maxlength="255">
2015-12-07 23:30:52 +01:00
</div>
2021-02-23 04:17:51 +08:00
<div class="field content-editor">
2022-06-27 22:58:46 +02:00
<label> {{ .locale .Tr "repo.release.content" }} </label>
2021-02-23 04:17:51 +08:00
<div class="ui top tabular menu" data-write="write" data-preview="preview">
2022-06-27 22:58:46 +02:00
<a class="active write item" data-tab="write"> {{ $ .locale .Tr "write" }} </a>
2023-02-07 02:09:18 +08:00
<a class="preview item" data-tab="preview" data-url=" {{ $ .Repository .Link }} /markdown" data-context=" {{ $ .RepoLink }} "> {{ $ .locale .Tr "preview" }} </a>
2021-02-23 04:17:51 +08:00
</div>
<div class="ui bottom active tab" data-tab="write">
<textarea name="content"> {{ .content }} </textarea>
</div>
2021-05-07 10:43:41 +02:00
<div class="ui bottom tab markup" data-tab="preview">
2022-06-27 22:58:46 +02:00
{{ $ .locale .Tr "loading" }}
2021-02-23 04:17:51 +08:00
</div>
2015-12-07 23:30:52 +01:00
</div>
2021-03-23 00:09:51 +08:00
{{ range .attachments }}
<div class="field" id="attachment- {{ .ID }} ">
2023-02-13 17:59:59 +00:00
<div class="ui right gt-df gt-ac wrap_remove">
2021-03-23 00:09:51 +08:00
<a class="ui mini compact red button remove-rel-attach" data-id=" {{ .ID }} " data-uuid=" {{ .UUID }} ">
2022-06-27 22:58:46 +02:00
{{ $ .locale .Tr "remove" }}
2021-03-23 00:09:51 +08:00
</a>
</div>
2023-02-13 17:59:59 +00:00
<div class="gt-df gt-ac">
<input name="attachment-edit- {{ .UUID }} " class="gt-mr-3 attachment_edit" required value=" {{ .Name }} "/>
2021-03-23 00:09:51 +08:00
<input name="attachment-del- {{ .UUID }} " type="hidden" value="false"/>
2023-02-13 17:59:59 +00:00
<span class="ui text grey gt-mr-3"> {{ .Size | FileSize }} </span>
2022-06-27 22:58:46 +02:00
<span class="tooltip" data-content=" {{ $ .locale .Tr "repo.release.download_count" ( .DownloadCount | PrettyNumber ) }} ">
2021-03-23 00:09:51 +08:00
{{ svg "octicon-info" }}
</span>
</div>
</div>
{{ end }}
2017-01-15 14:57:00 +00:00
{{ if .IsAttachmentEnabled }}
2020-10-05 07:49:33 +02:00
<div class="field">
{{ template "repo/upload" . }}
</div>
2017-01-15 14:57:00 +00:00
{{ end }}
2015-12-07 23:30:52 +01:00
</div>
<div class="ui container">
<div class="ui divider"></div>
<div class="ui text right">
2021-03-01 03:57:45 +08:00
{{ if not .PageIsEditRelease }}
<div class="tag-message field">
<div class="ui checkbox">
<input type="checkbox" name="add_tag_msg">
2022-06-27 22:58:46 +02:00
<label><strong> {{ .locale .Tr "repo.release.add_tag_msg" }} </strong></label>
2021-03-01 03:57:45 +08:00
</div>
</div>
{{ else }}
<input type="hidden" name="add_tag_msg" value="false">
{{ end }}
2015-12-07 23:30:52 +01:00
<div class="prerelease field">
<div class="ui checkbox">
<input type="checkbox" name="prerelease" {{ if .prerelease }} checked {{ end }} >
2022-06-27 22:58:46 +02:00
<label><strong> {{ .locale .Tr "repo.release.prerelease_desc" }} </strong></label>
2015-12-07 23:30:52 +01:00
</div>
</div>
2022-06-27 22:58:46 +02:00
<span class="help"> {{ .locale .Tr "repo.release.prerelease_helper" }} </span>
2015-12-07 23:30:52 +01:00
<div class="field">
{{ if .PageIsEditRelease }}
2020-11-29 07:22:04 +01:00
<a class="ui button" href=" {{ .RepoLink }} /releases">
2022-06-27 22:58:46 +02:00
{{ .locale .Tr "repo.release.cancel" }}
2015-12-07 23:30:52 +01:00
</a>
2020-11-29 07:22:04 +01:00
<a class="ui red button delete-button" data-url=" {{ $ .RepoLink }} /releases/delete" data-id=" {{ .ID }} ">
2022-06-27 22:58:46 +02:00
{{ $ .locale .Tr "repo.release.delete_release" }}
2020-11-29 07:22:04 +01:00
</a>
2016-11-14 17:30:22 +01:00
{{ if .IsDraft }}
2022-06-27 22:58:46 +02:00
<input class="ui button" type="submit" name="draft" value=" {{ .locale .Tr "repo.release.save_draft" }} "/>
2020-11-29 07:22:04 +01:00
<button class="ui primary button">
2022-06-27 22:58:46 +02:00
{{ .locale .Tr "repo.release.publish" }}
2016-11-14 17:30:22 +01:00
</button>
{{ else }}
2020-11-29 07:22:04 +01:00
<button class="ui primary button">
2022-06-27 22:58:46 +02:00
{{ .locale .Tr "repo.release.edit_release" }}
2016-11-14 17:30:22 +01:00
</button>
{{ end }}
2015-12-07 23:30:52 +01:00
{{ else }}
2021-03-01 03:57:45 +08:00
{{ if not .tag_name }}
2022-06-27 22:58:46 +02:00
<input class="ui grey button" type="submit" name="tag_only" value=" {{ .locale .Tr "repo.release.add_tag" }} "/>
2021-03-01 03:57:45 +08:00
{{ end }}
2022-06-27 22:58:46 +02:00
<input class="ui button" type="submit" name="draft" value=" {{ .locale .Tr "repo.release.save_draft" }} "/>
2020-11-29 07:22:04 +01:00
<button class="ui primary button">
2022-06-27 22:58:46 +02:00
{{ .locale .Tr "repo.release.publish" }}
2015-12-07 23:30:52 +01:00
</button>
{{ end }}
</div>
</div>
</div>
</form>
</div>
2014-04-06 14:54:28 +08:00
</div>
2015-11-20 02:38:41 -05:00
{{ if .PageIsEditRelease }}
2015-12-07 23:30:52 +01:00
<div class="ui small basic delete modal">
<div class="ui icon header">
2021-03-22 05:04:19 +01:00
{{ svg "octicon-trash" }}
2022-06-27 22:58:46 +02:00
{{ .locale .Tr "repo.release.deletion" }}
2015-12-07 23:30:52 +01:00
</div>
<div class="content">
2022-06-27 22:58:46 +02:00
<p> {{ .locale .Tr "repo.release.deletion_desc" }} </p>
2015-12-07 23:30:52 +01:00
</div>
{{ template "base/delete_modal_actions" . }}
</div>
2015-11-20 02:38:41 -05:00
{{ end }}
2015-12-07 23:30:52 +01:00
{{ template "base/footer" . }}