{% extends "_base.html" %} {% load i18n %} {% block content %} {% load static %}

{% trans 'Manage Regions' %}

{% include "search_input_form.html" with object_type="region" region_slug="" language_slug="" %} {% if perms.cms.change_region %} {% trans 'Create region' %} {% endif %}
{% for region in regions %} {% include "regions/region_list_row.html" %} {% empty %} {% endfor %}
{% trans 'Name' %} {% trans 'Created' %} {% trans 'Last updated' %} {% trans 'Status' %} {% trans 'Actions' %}
{% if search_query %} {% trans 'No regions found with these filters.' %} {% else %} {% trans 'No regions available yet.' %} {% endif %}
{% url "regions" as url %} {% include "pagination.html" with url=url chunk=regions %} {% endblock %}