Rearrange source to src dir.
[redakcja.git] / src / toolbar / templates / toolbar / toolbar.html
1 {% load toolbar_tags %}
2 <div class="toolbar">
3     <select class="group_selector">
4         {% for group in toolbar_groups %}
5         <option value="{{ group.slug }}" {% if forloop.first %}selected="selected"{% endif %}>{{ group.name }}</option>
6         {% endfor %}
7     </select>
8
9         <button type="button" class="prev">&lt;</button>
10     <div class="button_group_container">
11         {% for group in toolbar_groups %}
12         <ul data-group="{{ group.slug }}" class="button_group">
13             {# buttons for this group #}
14             {% for button in group.button_set.all %}
15                 <li class="toolbar-button">{% toolbar_button button %}</li>
16             {% endfor %}
17         </ul>
18         {% endfor %}
19     </div>
20     <button type="button" class="next">&gt;</button>
21 </div>