{% extends "base/base.html" %} {% load i18n %} {% load url from future %} {% load crispy_forms_tags %} {% load form_tags %} {% load viewgroups_tags %} {% load staticfiles %} {% block title %}{% blocktrans with vn_title=opts.verbose_name.title %}Create {{ vn_title }}{% endblocktrans %}{% endblock title %} {% block header %}{% blocktrans with vn_title=opts.verbose_name.title %}Create {{ vn_title }}{% endblocktrans %}{% endblock header %} {% block links %} {% trans 'Back' %} {% endblock links %} {% block detail %}
{% csrf_token %}
{% block form %} {% if not inlines %} {% form_helper form=form button=_("Save") as helper %} {% crispy form helper %} {% else %} {% form_helper form=form as helper %} {% crispy form helper %} {% endif %} {% endblock form %}
{% for inline in inlines %} {{ inline }} {% endfor %} {% if inlines %} {% endif %}
{% endblock detail %} {% block extrastyles %} {% endblock extrastyles %} {% block extra_scripts %} {{ block.super }} {% if inlines %} {% endif %} {% endblock extra_scripts %}