diff options
author | Unknwon <u@gogs.io> | 2015-08-12 18:44:09 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-08-12 18:44:09 +0800 |
commit | ab2d0b3b442a2dc9ad0197f6e97760f5dd6148d6 (patch) | |
tree | 3d26bdab507d7ea66f3f59e2542b1d535e48ec19 /templates/repo/issue/new_form.tmpl | |
parent | b4c0b7b98b925eb470d361d9e90d0032770513ff (diff) | |
download | gitea-ab2d0b3b442a2dc9ad0197f6e97760f5dd6148d6.tar.gz gitea-ab2d0b3b442a2dc9ad0197f6e97760f5dd6148d6.zip |
add comment form UI
Diffstat (limited to 'templates/repo/issue/new_form.tmpl')
-rw-r--r-- | templates/repo/issue/new_form.tmpl | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/templates/repo/issue/new_form.tmpl b/templates/repo/issue/new_form.tmpl index dfd86e8491..79e3dd09de 100644 --- a/templates/repo/issue/new_form.tmpl +++ b/templates/repo/issue/new_form.tmpl @@ -15,22 +15,7 @@ <div class="field"> <input name="title" placeholder="{{.i18n.Tr "repo.milestones.title"}}" value="{{.title}}" autofocus required> </div> - <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}} + {{template "repo/issue/comment_tab" .}} <div class="text right"> <button class="ui green button"> {{.i18n.Tr "repo.issues.create"}} |