{% extends 'base.html' %} {% load i18n %} {% load staticfiles %} {% block title %} {% trans "Seat Form" %} {% endblock title %} {% block content %}

{% trans "Seat Form" %}

{% csrf_token %}
{% for field in form %} {% include "publisher/form_field.html" %} {% endfor %}
{% endblock content %} {% block extra_js %} {% endblock %}