aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/file_create.html
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-04-02 18:34:38 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-04-02 18:34:38 -0700
commit102be654418e1a4acc6ebbd7bdaf22df2a27ac54 (patch)
treed4be543c27f0c7811d5bbc35501d4caada79dd07 /python/fatcat_web/templates/file_create.html
parente192f20bb7f950bbbd4ea88724340eb1f5b66357 (diff)
downloadfatcat-102be654418e1a4acc6ebbd7bdaf22df2a27ac54.tar.gz
fatcat-102be654418e1a4acc6ebbd7bdaf22df2a27ac54.zip
file editing templates
Diffstat (limited to 'python/fatcat_web/templates/file_create.html')
-rw-r--r--python/fatcat_web/templates/file_create.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/python/fatcat_web/templates/file_create.html b/python/fatcat_web/templates/file_create.html
new file mode 100644
index 00000000..a7c99b96
--- /dev/null
+++ b/python/fatcat_web/templates/file_create.html
@@ -0,0 +1,20 @@
+{% extends "file_edit.html" %}
+
+{% block edit_form_prefix %}
+<div class="ui segment">
+<h1 class="ui header">Create New File Entity</h1>
+
+<form class="ui form" id="create_file_form" method="POST" action="/file/create">
+{% endblock %}
+
+{% block edit_form_suffix %}
+ <br><br>
+ <input class="ui primary submit button" type="submit" value="Create File!">
+ <p>
+ <i>New entity will be part of the current editgroup, which needs to be
+ submited and approved before the entity will formally be included in the
+ catalog.</i>
+</form>
+</div>
+{% endblock %}
+