{% block table_filter %}
{% if filter.filter_type == 'fixed' %}
{% for button in filter.fixed_buttons %}
{% endfor %}
{% elif filter.filter_type == 'query' %}
{% elif filter.filter_type == 'server' %}
{% with name=filter.get_param_name|add:'_field' options=filter.get_select_options stand_alone=1 value=filter.filter_field %}
{% include 'horizon/common/fields/_themable_select.html' %}
{% endwith %}
{% endif %}
{% endblock table_filter %}
{% block table_actions %}
{% comment %}
For each single action in the Table Actions area
{% endcomment %}
{% for action in table_actions_buttons %}
{% include "horizon/common/_data_table_action.html" with is_table_action=1 is_single=1 %}
{% endfor %}
{% comment %}
If additional actions are defined, scoop them into the actions dropdown menu
{% endcomment %}
{% if table_actions_menu|length > 0 %}