summaryrefslogtreecommitdiffstats
path: root/templates/repo/editor
diff options
context:
space:
mode:
authorLukas <LukBukkit@users.noreply.github.com>2019-10-16 21:28:41 +0200
committerLauris BH <lauris@nix.lv>2019-10-16 22:28:41 +0300
commitde4f10be86b207b087ba9781c628fe3d7b059f7b (patch)
tree6c522c45ad076b1dc167d65d2c2dc1d91cbda8d9 /templates/repo/editor
parentd4cd4ed4422be222088dd8535a228b906f43fdc2 (diff)
downloadgitea-de4f10be86b207b087ba9781c628fe3d7b059f7b.tar.gz
gitea-de4f10be86b207b087ba9781c628fe3d7b059f7b.zip
Allow committing / adding empty files using the web ui (#8420) (#8532)
* Allow committing / adding empty files from the web ui (#8420) Signed-off-by: LukBukkit <luk.bukkit@gmail.com> * Add a modal to confirm the commit of an empty file Signed-off-by: LukBukkit <luk.bukkit@gmail.com>
Diffstat (limited to 'templates/repo/editor')
-rw-r--r--templates/repo/editor/edit.tmpl25
1 files changed, 23 insertions, 2 deletions
diff --git a/templates/repo/editor/edit.tmpl b/templates/repo/editor/edit.tmpl
index 134dc818d4..d0ba1becc8 100644
--- a/templates/repo/editor/edit.tmpl
+++ b/templates/repo/editor/edit.tmpl
@@ -39,8 +39,7 @@
data-url="{{.Repository.APIURL}}/markdown"
data-context="{{.RepoLink}}"
data-markdown-file-exts="{{.MarkdownFileExts}}"
- data-line-wrap-extensions="{{.LineWrapExtensions}}"
- required>
+ data-line-wrap-extensions="{{.LineWrapExtensions}}">
{{.FileContent}}</textarea>
</div>
<div class="ui bottom attached tab segment markdown" data-tab="preview">
@@ -53,5 +52,27 @@
{{template "repo/editor/commit_form" .}}
</form>
</div>
+
+
+ <div class="ui small basic modal" id="edit-empty-content-modal">
+ <div class="ui icon header">
+ <i class="file icon"></i>
+ {{.i18n.Tr "repo.editor.commit_empty_file_header"}}
+ </div>
+ <div class="center content">
+ <p>{{.i18n.Tr "repo.editor.commit_empty_file_text"}}</p>
+ </div>
+ <div class="actions">
+ <div class="ui red basic cancel inverted button">
+ <i class="remove icon"></i>
+ {{.i18n.Tr "repo.editor.cancel"}}
+ </div>
+ <div class="ui green basic ok inverted button">
+ <i class="save icon"></i>
+ {{.i18n.Tr "repo.editor.commit_changes"}}
+ </div>
+ </div>
+ </div>
+
</div>
{{template "base/footer" .}}