{% load powercrud_partials %}
{% if not row_actions.show_all_dropdown %} {% for action in row_actions.standard_actions %} {{ action.label_html|safe }} {% endfor %} {% endif %} {% if row_actions.show_dropdown %} {% with rendered_dropdown_actions=row_actions.dropdown_actions rendered_dropdown_scope=row_actions.dropdown_scope trigger_label=row_actions.dropdown_trigger_label %} {% partial dropdown_control %} {% endwith %} {% else %} {% for action in row_actions.extra_actions %} {{ action.text }} {% endfor %} {% endif %}
{% if row_actions.show_responsive_dropdown %}
{% with rendered_dropdown_actions=row_actions.responsive_dropdown_actions rendered_dropdown_scope='all' trigger_label='Actions' %} {% partial dropdown_control %} {% endwith %}
{% endif %} {% partialdef dropdown_control %}
{% endpartialdef dropdown_control %} {% partialdef dropdown_action %}
  • {% if rendered_dropdown_scope == 'all' %}{% endif %}{{ action.text }}
  • {% endpartialdef dropdown_action %}