You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

comment_tab.tmpl 1.1KB

12345678910111213141516
  1. <div class="field">
  2. <div class="ui top attached tabular menu" data-write="write" data-preview="preview">
  3. <a class="active item" data-tab="write">{{.i18n.Tr "repo.release.write"}}</a>
  4. <a class="item" data-tab="preview" data-url="{{AppSubUrl}}/api/v1/markdown" data-context="{{.RepoLink}}">{{.i18n.Tr "repo.release.preview"}}</a>
  5. </div>
  6. <div class="ui bottom attached active tab segment" data-tab="write">
  7. <textarea id="content" name="content"></textarea>
  8. </div>
  9. <div class="ui bottom attached tab segment markdown" data-tab="preview">
  10. {{.i18n.Tr "repo.release.loading"}}
  11. </div>
  12. </div>
  13. {{if .IsAttachmentEnabled}}
  14. <div class="attachments"></div>
  15. <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>
  16. {{end}}