Merge branch 'master' of git@stigma:platforma
[redakcja.git] / apps / toolbar / templates / toolbar / toolbar.html
1 <div id="toolbar">
2     <ol id="toolbar-tabs">
3         {% for group in groups %}
4         <li p:button-list="{{ group.slug }}">{{ group.name }}</li>
5         {% endfor %}
6     </ol>
7     <div style="clear: both; height: 0; width: 0">&nbsp;</div>
8     <div id="toolbar-buttons">
9         {% for group in groups %}
10         <ol id="{{ group.slug }}" style="display:none">
11             {% for button in group.button_set.all %}
12             <li p:tag="{{ button.slug }}" {% if button.key %}p:key="{{ button.key }}"{% endif %}>{{ button.label }}</li>
13             {% endfor %}
14         </ol>
15         {% endfor %}
16         <div style="clear: both; height: 0; width: 0">&nbsp;</div>
17     </div>
18 </div>