Improve organizer page and tabs

This commit is contained in:
Raphael Michel
2017-01-27 12:06:55 +01:00
parent ba455a3630
commit a3cd8d151d
3 changed files with 31 additions and 8 deletions

View File

@@ -22,7 +22,7 @@
{% endif %}
{% for title, content in tabs %}
<li>
<a href="#tab-{{ forloop.index }}" data-toggle="tab">
<a href="#tab-{{ forloop.counter }}" data-toggle="tab">
{{ title }}
</a>
</li>
@@ -149,7 +149,7 @@
</div>
{% endif %}
{% for title, content in tabs %}
<div class="tab-pane" id="tab-{{ forloop.index }}">
<div class="tab-pane" id="tab-{{ forloop.counter }}">
<div class="tab-inner">
{{ content }}
</div>