mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 20:29:12 +01:00
16 lines
No EOL
1 KiB
Cheetah
16 lines
No EOL
1 KiB
Cheetah
<div class="field">
|
|
<div class="ui top attached tabular menu">
|
|
<a class="active item" data-tab="write">{{.i18n.Tr "repo.release.write"}}</a>
|
|
<a class="item" data-tab="preview" data-url="/api/v1/markdown" data-context="{{.RepoLink}}">{{.i18n.Tr "repo.release.preview"}}</a>
|
|
</div>
|
|
<div class="ui bottom attached active tab segment" data-tab="write">
|
|
<textarea name="content"></textarea>
|
|
</div>
|
|
<div class="ui bottom attached tab segment markdown" data-tab="preview">
|
|
{{.i18n.Tr "repo.release.loading"}}
|
|
</div>
|
|
</div>
|
|
{{if .IsAttachmentEnabled}}
|
|
<div class="attachments"></div>
|
|
<div class="ui basic button dropzone" id="dropzone" data-upload-url="/issues/attachments" data-accepts="{{.AttachmentAllowedTypes}}" data-max-file="{{.AttachmentMaxFiles}}" data-max-size="2" 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>
|
|
{{end}} |