posts_actions.html 951 B

1234567891011121314151617181920
  1. {% load i18n %}
  2. <div class="btn-group pull-right">
  3. <form id="posts-actions" class="dropup" action="{{ querystring }}" method="post" data-select-items-message="{{ posts_actions.select_items_message }}">
  4. {% csrf_token %}
  5. <ul class="dropdown-menu scrollable" role="menu">
  6. {% for action in posts_actions.get_list %}
  7. <li>
  8. <button type="{% if not action.is_button %}submit{% else %}button{% endif %}" name="action" value="{{ action.action }}" class="action-{{ action.action }}" {% if action.confirmation %}data-confirmation="{{ action.confirmation }}"{% endif %}>
  9. <span class="fa fa-{{ action.icon }} fa-fw"></span>
  10. {{ action.name }}
  11. </button>
  12. </li>
  13. {% endfor %}
  14. </ul>
  15. <button type="button" class="btn btn-default dropdown-toggle mass-controller" data-toggle="dropdown">
  16. <span class="fa fa-gears"></span>
  17. {% trans "Posts moderation" %}
  18. </button>
  19. </form>
  20. </div>