暂无描述

actions.html 1.2KB

1234567891011121314151617181920212223242526
  1. {% if actions %}
  2. <div class="btn-toolbar crud-actions" role="toolbar" aria-label="Actions">
  3. {% for group in actions %}
  4. <div class="btn-group" role="group" aria-label="Group">
  5. {% for action in group %}
  6. {% if action.type == 'menu' %}
  7. <div class="btn-group" role="group">
  8. <button type="button" class="btn {{ action.button_class|default:"btn-default" }} dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
  9. {{ action.text }}
  10. <span class="caret"></span>
  11. </button>
  12. <ul class="dropdown-menu">
  13. {% for item in action.items %}
  14. <li><a href="{{ item.url }}"{% if item.onclick %} onclick="{{ item.onclick }}"{% endif %}>{{ item.text }}</a></li>
  15. {% endfor %}
  16. </ul>
  17. </div>
  18. {% else %}
  19. <a href="{{ action.url }}"{% if action.onclick %} onclick="{{ action.onclick }}"{% endif %} class="btn {{ action.button_class|default:"btn-default" }}">{{ action.text }}</a>
  20. {% endif %}
  21. {% endfor %}
  22. </div>
  23. {% endfor %}
  24. </div>
  25. {% endif %}