| 1234567891011121314151617181920212223242526 |
- {% if actions %}
- <div class="btn-toolbar crud-actions" role="toolbar" aria-label="Actions">
- {% for group in actions %}
- <div class="btn-group" role="group" aria-label="Group">
- {% for action in group %}
- {% if action.type == 'menu' %}
- <div class="btn-group" role="group">
- <button type="button" class="btn {{ action.button_class|default:"btn-default" }} dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
- {{ action.text }}
- <span class="caret"></span>
- </button>
- <ul class="dropdown-menu">
- {% for item in action.items %}
- <li><a href="{{ item.url }}"{% if item.onclick %} onclick="{{ item.onclick }}"{% endif %}>{{ item.text }}</a></li>
- {% endfor %}
- </ul>
- </div>
- {% else %}
- <a href="{{ action.url }}"{% if action.onclick %} onclick="{{ action.onclick }}"{% endif %} class="btn {{ action.button_class|default:"btn-default" }}">{{ action.text }}</a>
- {% endif %}
- {% endfor %}
- </div>
- {% endfor %}
- </div>
- {% endif %}
|