aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2018-10-17 13:15:00 -0400
committerParker Berberian <pberberian@iol.unh.edu>2018-10-17 13:16:28 -0400
commite87a0b9e5fc2846e6b621d94af6e19f6366c59a5 (patch)
treea6a5ed4dbc90e7fb0627782c465aa35832650041 /src/templates
parent1f3a770d2547848590f39e9d9b9bdffeb94eec14 (diff)
Added template
This template should not have been removed. Change-Id: Ic794ee40f45bd44af6fa976983b1c93660c8bb1c Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'src/templates')
-rw-r--r--src/templates/resource/steps/meta_info.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/templates/resource/steps/meta_info.html b/src/templates/resource/steps/meta_info.html
new file mode 100644
index 0000000..389ff6d
--- /dev/null
+++ b/src/templates/resource/steps/meta_info.html
@@ -0,0 +1,18 @@
+{% extends "workflow/viewport-element.html" %}
+{% load staticfiles %}
+
+{% load bootstrap3 %}
+
+{% block content %}
+
+<form id="resource_meta_form" method="post" action="/wf/workflow/">
+ {% csrf_token %}
+ <table>
+ {{form}}
+ </table>
+</form>
+{% endblock content %}
+
+{% block onleave %}
+document.getElementById("resource_meta_form").submit();
+{% endblock %}