aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/lfedge/booking/quick_deploy.html
blob: dac38151d83c7faef45602bd48b96ab9dd2326f8 (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
{% extends "base/booking/quick_deploy.html" %}
{% block opnfv %}
{% endblock opnfv %}
{% block form-text %}
<p class="my-0">
    Please select a host type you wish to book.
    Only available types are shown.
    More information can be found here:
    <a href="https://wiki.lfedge.org/display/LE/Shared+Community+Lab">LF Edge Wiki</a>.
    If something isn't working right, let us know <a href="mailto:{{contact_email}}"> here! </a> 
</p>
{% endblock form-text %}
{% block collab %}
<div class="col-12 col-lg-4 my-2">
    <div class="col border rounded py-2 h-100">
        <label>Collaborators</label>
        {{ form.users }}
    </div>
</div>
{% endblock collab %}

{% block image_script %}
    <script type="text/javascript">
        document.getElementById("id_image").disabled = true;
        document.getElementById("id_image").style.display = 'none';
        document.getElementById("id_image").previousElementSibling.style.display = 'none';
    </script>
{% endblock image_script %}