Fix title underline error in faq.rst
[ganeti_webmgr.git] / muddle / templates / config_tabbed.html
blobdd3ebfaabd259a1a2b91c2740782fd92aacb7c23
1 {% extends "config.html" %}
3 {% block tabs %}
4 {% for form in forms %}
5 <div id="tab_{{form.name}}" class="tab">{{form.name}}</div>
6 {% endfor %}
7 {% endblock %}
10 {% block tab_content %}
11 {% for form in forms %}
12 {% include "config_form.html" %}
13 {% endfor %}
14 {% endblock %}