Added template 71/63671/2
authorParker Berberian <pberberian@iol.unh.edu>
Wed, 17 Oct 2018 17:15:00 +0000 (13:15 -0400)
committerParker Berberian <pberberian@iol.unh.edu>
Wed, 17 Oct 2018 17:16:28 +0000 (13:16 -0400)
This template should not have been removed.

Change-Id: Ic794ee40f45bd44af6fa976983b1c93660c8bb1c
Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
dashboard/src/templates/resource/steps/meta_info.html [new file with mode: 0644]

diff --git a/dashboard/src/templates/resource/steps/meta_info.html b/dashboard/src/templates/resource/steps/meta_info.html
new file mode 100644 (file)
index 0000000..389ff6d
--- /dev/null
@@ -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 %}