summaryrefslogtreecommitdiffstats
path: root/dashboard
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
commit17c60b4b1f77358f8f7a6a455292d88641b11e05 (patch)
treeff255a611147e43f5cb0d09606f13b9f7215fa23 /dashboard
parent25275685e9a735e51fae8b1a936ba5733f6fb770 (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 'dashboard')
-rw-r--r--dashboard/src/templates/resource/steps/meta_info.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/dashboard/src/templates/resource/steps/meta_info.html b/dashboard/src/templates/resource/steps/meta_info.html
new file mode 100644
index 0000000..389ff6d
--- /dev/null
+++ b/dashboard/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 %}