Implement OPNFV workflow
[pharos-tools.git] / dashboard / src / templates / config_bundle / steps / assign_host_roles.html
1 {% extends "config_bundle/steps/table_formset.html" %}
2
3 {% load bootstrap3 %}
4
5 {% block table %}
6 <thead>
7     <tr>
8         <th>Host</th>
9         <th>Role</th>
10     </tr>
11 </thead>
12 <tbody>
13     {% for form in formset %}
14     <tr>
15         <td>{% bootstrap_field form.host_name show_label=False %}</td>
16         <td>{% bootstrap_field form.role  show_label=False %}</td>
17     </tr>
18     {% endfor %}
19 </tbody>
20
21 {{formset.management_form}}
22 {% endblock table %}