add nick
[laas.git] / src / templates / base / config_bundle / steps / pick_installer.html
1 {% extends "workflow/viewport-element.html" %}
2 {% load staticfiles %}
3
4 {% load bootstrap4 %}
5
6 {% block content %}
7
8 {% if unavailable %}
9 <h1>Please choose a config bundle first</h1>
10 {% else %}
11
12 <form id="step_form" method="POST" class="form">
13     {% csrf_token %}
14     <p>Choose your installer:</p>
15     {% bootstrap_field form.installer %}
16     <p>Choose your scenario:</p>
17     {% bootstrap_field form.scenario %}
18 </form>
19
20 {% endif %}
21
22 {% endblock content %}