2015-08-12 12:44:09 +02:00
|
|
|
<div class="field">
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="ui top attached tabular menu" data-write="write" data-preview="preview">
|
|
|
|
<a class="active item" data-tab="write">{{.i18n.Tr "repo.release.write"}}</a>
|
|
|
|
<a class="item" data-tab="preview" data-url="{{AppSubUrl}}/api/v1/markdown" data-context="{{.RepoLink}}">{{.i18n.Tr "repo.release.preview"}}</a>
|
|
|
|
</div>
|
|
|
|
<div class="ui bottom attached active tab segment" data-tab="write">
|
2017-09-22 08:17:31 +02:00
|
|
|
<textarea id="content" class="edit_area js-quick-submit" name="content" tabindex="4" data-id="issue-{{.RepoName}}" data-url="{{AppSubUrl}}/api/v1/markdown" data-context="{{.Repo.RepoLink}}">
|
2016-08-15 23:04:44 +02:00
|
|
|
{{if .IssueTemplate}}{{.IssueTemplate}}{{else if .PullRequestTemplate}}{{.PullRequestTemplate}}{{else}}{{.content}}{{end}}</textarea>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
<div class="ui bottom attached tab segment markdown" data-tab="preview">
|
|
|
|
{{.i18n.Tr "repo.release.loading"}}
|
|
|
|
</div>
|
2015-08-12 12:44:09 +02:00
|
|
|
</div>
|
|
|
|
{{if .IsAttachmentEnabled}}
|
2016-08-11 14:48:08 +02:00
|
|
|
<div class="files"></div>
|
2017-01-15 15:57:00 +01:00
|
|
|
<div class="ui basic button dropzone" id="dropzone" data-upload-url="{{AppSubUrl}}/attachments" data-accepts="{{.AttachmentAllowedTypes}}" data-max-file="{{.AttachmentMaxFiles}}" data-max-size="{{.AttachmentMaxSize}}" data-default-message="{{.i18n.Tr "dropzone.default_message"}}" data-invalid-input-type="{{.i18n.Tr "dropzone.invalid_input_type"}}" data-file-too-big="{{.i18n.Tr "dropzone.file_too_big"}}" data-remove-file="{{.i18n.Tr "dropzone.remove_file"}}"></div>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|