{% extends 'noel/base.html' %} {% load crispy_forms_tags %} {% block extra_head %} {% endblock %} {% block content %}
{% csrf_token %}
{{ form|crispy }} {% for inline in inlines %}

{{inline.title }}

{% if inline.help_text %}
{{ inline.help_text }}
{% endif %}
{% crispy inline inline.form.helper %}
{% endfor %}
{% endblock %}