{% if nested_context %}
{# We're in a nested context - go back to the nested form #}
{% else %}
{# Root level - go back to the main form #}
{% endif %}
0 rows selected
{% for col in columns %}
{{ col|replace('_', ' ')|title }}{% if required_columns and col in required_columns %}*{% endif %}
{% endfor %}
Actions
{% for row in rows %}
{% include "partials/table_row.html" with context %}
{% endfor %}