bench-forgejo/templates/repo/issue/comment_tab.tmpl

16 lines
1.1 KiB
Cheetah
Raw Normal View History

2015-08-12 16:14:09 +05:30
<div class="field">
2015-08-20 02:01:28 +05:30
<div class="ui top attached tabular menu" data-write="write" data-preview="preview">
2015-08-12 16:14:09 +05:30
<a class="active item" data-tab="write">{{.i18n.Tr "repo.release.write"}}</a>
2015-11-26 06:40:25 +05:30
<a class="item" data-tab="preview" data-url="{{AppSubUrl}}/api/v1/markdown" data-context="{{.RepoLink}}">{{.i18n.Tr "repo.release.preview"}}</a>
2015-08-12 16:14:09 +05:30
</div>
<div class="ui bottom attached active tab segment" data-tab="write">
2015-11-12 02:54:13 +05:30
<textarea id="content" name="content" tabindex="4"></textarea>
2015-08-12 16:14:09 +05:30
</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>
2015-09-03 01:48:09 +05:30
<div class="ui basic button dropzone" id="dropzone" data-upload-url="{{AppSubUrl}}/issues/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-08-12 16:14:09 +05:30
{{end}}