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
468 B

<div id="{{ tabs_list_id }}" class="tabs-plugin">
<ul class="tabs-list">
{% for tab in tabs %}
<li><a href="#{{tab.get_html_id}}">{% if tab.is_strong %}<strong>{% endif %}{{ tab }}</a>{% if tab.is_strong %}</strong>{% endif %}</li>
{% endfor %}
</ul>
{% for tab in tabs %}
<div id="{{tab.get_html_id}}">
{{ tab.content|safe }}
</div>
{% endfor %}
</div>
<script type="text/javascript">
$(function(){
$('#{{ tabs_list_id }}').tabs();
});
</script>