aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/base/dashboard/genericselect.html
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2020-01-30 13:33:35 -0500
committerParker Berberian <pberberian@iol.unh.edu>2020-01-30 16:12:18 -0500
commit078273eb7db5a481a4131d44a943f3c9e34b6b88 (patch)
tree9e6e569e18712d77b8a65c6ebf4dda50ade1b55a /src/templates/base/dashboard/genericselect.html
parent899e1a4baa95d0bc6f0eef34de66f0e257174878 (diff)
Adds Template Overrides
Changes the structure of the template directories to allow a new project to define their own set of override templates that inherit from a common base. I have slightly modified landing.html here as an example. In comming changes we will try to move all the "laas" specific content into the laas directory Change-Id: I46151be182de901f870debb247b305ea34ae77ba Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'src/templates/base/dashboard/genericselect.html')
-rw-r--r--src/templates/base/dashboard/genericselect.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/templates/base/dashboard/genericselect.html b/src/templates/base/dashboard/genericselect.html
new file mode 100644
index 0000000..863d33f
--- /dev/null
+++ b/src/templates/base/dashboard/genericselect.html
@@ -0,0 +1,30 @@
+{% extends "workflow/viewport-element.html" %}
+
+{% load bootstrap4 %}
+
+{% block content %}
+
+<div id="select_form_div" class="h-100 border d-flex flex-column p-4">
+ <h3 id="create_section">Create a Resource
+ <button class="btn btn-primary {% if disabled %} disabled {% endif %}"
+ {% if not disabled %}onclick="add_workflow({{addable_type_num}})"
+ {% endif %}>Here
+ </button>
+ </h3>
+ <div class="border-top"></div>
+ <h3 id="select_header_section">Or select from the list below:</h3>
+ <div id="select_section" class="d-flex flex-column">
+ <form id="step_form" method="post" action="" class="form d-flex flex-column">
+ {% csrf_token %}
+ {{ form|default:"<p>no form loaded</p>" }}
+ </form>
+ </div>
+</div>
+
+<script>
+ {% if disabled %}
+ disable();
+ {% endif %}
+</script>
+
+{% endblock content %}