summaryrefslogtreecommitdiffstats
path: root/dashboard/src/templates/config_bundle/steps/assign_network_roles.html
blob: aa1df44a13f4cb68a817ac0b267189afe0fcf06f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "config_bundle/steps/table_formset.html" %}

{% load bootstrap4 %}

{% block table %}
<thead>
    <tr>
        <th>Role</th>
        <th>Network</th>
    </tr>
</thead>
<tbody>
    {% for form in formset %}
    <tr>
        <td>{% bootstrap_field form.role show_label=False %}</td>
        <td>{% bootstrap_field form.network show_label=False %}</td>
    </tr>
    {% endfor %}
</tbody>

{{formset.management_form}}
{% endblock table %}