{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% load i18n %} {% block body_class %}{{ block.super }} create-page {% endblock %} {% block title %} {% if offer_group.pk %} {{ offer_group.name }}: {% else %} {% trans "Create new offer_group" %}: {% endif %} {{ title }} | {% trans "offer_groups" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block dashboard_content %} {% if form.is_bound and not form.is_valid %}
{% trans "Oops! We found some errors" %} - {% trans "please check the error messages below and try again" %}
{% endif %} {% if form.non_field_errors %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %} {% endif %}
{% csrf_token %} {% block form_fields %} {% include 'dashboard/partials/form_field.html' with field=form.name %} {% include 'dashboard/partials/form_field.html' with field=form.priority %} {% include 'dashboard/partials/form_field.html' with field=form.offers %} {% endblock %} {% include "dashboard/partials/pagination.html" %}
{% trans "Cancel" %}
{% endblock dashboard_content %}