cleanup between plugin.name and plugin.uuid
[myslice.git] / plugins / templates / tabs.html
index fe50e1f..54cd575 100644 (file)
@@ -1,12 +1,12 @@
 {# could try to set class='active' on the one we want to highlight #}
-<ul class="nav nav-tabs" id='{{ uuid }}'>
+<ul class="nav nav-tabs" id=tab-'{{ domid }}'>
 {% for son in sons %}
-<li> <a href="#{{ son.uuid }}" data-toggle="tab">{{ son.title }}</a> </li>
+<li> <a href="#{{ son.domid }}" data-toggle="tab">{{ son.title }}</a> </li>
 {% endfor %}
 </ul><!--nav-tabs-->
 <div class="tab-content">
 {% for son in sons %}
-<div class="tab-pane fade in{% if son.active %} active{% endif %}" id="{{ son.uuid }}">
+<div class="tab-pane fade in{% if son.active %} active{% endif %}" id="{{ son.domid }}">
 {{ son.rendered }}
 </div><!--tab-pane-->
 {% endfor %}