summaryrefslogtreecommitdiffstats
path: root/templates/repo/issue/create.tmpl
diff options
context:
space:
mode:
authorJustin Nuß <justin.nuss@hmmh.de>2014-07-24 15:51:40 +0200
committerJustin Nuß <justin.nuss@hmmh.de>2014-07-24 15:51:40 +0200
commit4d702eb345d36888b9cace32ba51ac79e9a260f8 (patch)
tree76dac7e89f25120e9fe6359494c7db325564c9ae /templates/repo/issue/create.tmpl
parent9df99681fbcb5a809d2821c3861c8655f885af7a (diff)
downloadgitea-4d702eb345d36888b9cace32ba51ac79e9a260f8.tar.gz
gitea-4d702eb345d36888b9cace32ba51ac79e9a260f8.zip
Allow disabling uploads
Diffstat (limited to 'templates/repo/issue/create.tmpl')
-rw-r--r--templates/repo/issue/create.tmpl4
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/repo/issue/create.tmpl b/templates/repo/issue/create.tmpl
index 0d72123b81..7705841708 100644
--- a/templates/repo/issue/create.tmpl
+++ b/templates/repo/issue/create.tmpl
@@ -101,13 +101,17 @@
<div class="tab-pane issue-preview-content" id="issue-preview">loading...</div>
</div>
</div>
+ {{if .AttachmentsEnabled}}
<div id="attached">
<div id="attached-list"></div>
</div>
+ {{end}}
<div class="text-right panel-body">
<div class="form-group">
+ {{if .AttachmentsEnabled}}
<input type="file" accept="{{.AllowedTypes}}" style="display: none;" id="attachments-input" name="attachments" multiple />
<button class="btn-default btn attachment-add" id="attachments-button">Select Attachments...</button>
+ {{end}}
<input type="hidden" value="id" name="repo-id"/>
<button class="btn-success btn">Create new issue</button>
</div>