{% extends 'speeches/base_form.html' %} {% load staticfiles %} {% load i18n %} {% block title %} {% if object %} {% trans 'Edit section' %} {% else %} {% trans 'Add a section' %} {% endif %} {% endblock %} {% block content %}
{% if object %} {% trans "Update section" as submit %} {% else %} {% trans "Add section" as submit %} {% endif %} {% include 'speeches/form.html' with type="section" submit=submit %}
{% endblock %}