You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
677 B
17 lines
677 B
<div id="{{ tabs_list_id }}" ng-tabs class="tabs-plugin">
|
|
<ul class="tabs-list list-unstyled list-inline">
|
|
{% for tab in tabs %}
|
|
{% if forloop.first %}
|
|
<li ng-tab-head="active"><a ng-click="$event.preventDefault()" href="#{{tab.get_html_id}}">{{ tab }}</a></li>
|
|
{% else %}
|
|
<li ng-tab-head="active"><a ng-click="$event.preventDefault()" href="#{{tab.get_html_id}}">{{ tab }}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% for tab in tabs %}
|
|
<div id="{{tab.get_html_id}}" ng-tab-body class="tab-body">
|
|
{{ tab.content|safe }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
|