{% 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 offer_templates %} {% include "offer_templates/offer_template_list_row.html" %} {% empty %} {% endfor %}
{% trans 'Name' %} {% trans 'Slug' %} {% trans 'URL' %} {% trans 'Last updated' %} {% trans 'Created' %} {% trans 'Options' %}
{% trans 'No offer templates available yet.' %}
{% url "offer_templates" as url %} {% include "pagination.html" with url=url chunk=offer_templates %} {% endblock %}