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

{% trans "Offer Templates" %}

{% if perms.cms.change_offertemplate %} {% trans "Create offer template" %} {% endif %}
{% for offer_template in offertemplates %} {% include "offertemplates/offertemplate_list_row.html" %} {% empty %} {% endfor %}
{% trans "Name" %} {% trans "Slug" %} {% trans "URL" %} {% trans "Last updated" %} {% trans "Created" %} {% trans "Number of regions" %} {% trans "Options" %}
{% trans "No offer templates available yet." %}
{% url "offertemplates" as url %} {% include "pagination.html" with chunk=page_obj %} {% include "../generic_confirmation_dialog.html" %} {% endblock content %}