{% endif %}
{% endblock %}
{% endblock %}
{# block overridden to make Actions the last column instead of first #}
{% block list_row scoped %}
{% if actions %}
{% endif %}
{% for c, name in list_columns %}
{% if admin_view.is_editable(c) %}
{% set form = list_forms[get_pk_value(row)] %}
{% if form.csrf_token %}
{{ form[c](pk=get_pk_value(row), display_value=get_value(row, c), csrf=form.csrf_token._value()) }}
{% else %}
{{ form[c](pk=get_pk_value(row), display_value=get_value(row, c)) }}
{% endif %}
{% else %}
{{ get_value(row, c) }}
{% endif %}