summaryrefslogtreecommitdiffstats
path: root/dashboard/src/templates/config_bundle/steps/pick_installer.html
blob: 31a06de2d0454087b8cf895eaf2911a31b8970c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{% extends "workflow/viewport-element.html" %}
{% load staticfiles %}

{% load bootstrap4 %}

{% block content %}

{% if unavailable %}
<h1>Please choose a config bundle first</h1>
{% else %}

<form id="installer_form" action="/wf/workflow/" method="POST" id="installer_config_form" class="form">
    {% csrf_token %}
    <p>Choose your installer:</p>
    {% bootstrap_field form.installer %}
    <p>Choose your scenario:</p>
    {% bootstrap_field form.scenario %}
</form>

{% endif %}

{% endblock content %}

{% block onleave %}
var form = $("#installer_form");
var formData = form.serialize();
var req = new XMLHttpRequest();
req.open("POST", "/wf/workflow/", false);
req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
req.onerror = function() { alert("problem with form submission"); }
req.send(formData);
{% endblock %}