{% extends "base.html" %} {% load tags %} {% block main_content %} APP : {{app_label}}
MODEL : {{actual_model_name}}
PLURIZED MODEL : {{pluralized_model_name}}

Create {{actual_model_name|title}}

{% csrf_token %} {% for field in form %}
{{ field.errors }} {{ field.label_tag }} {{ field }}
{% endfor %}

Formset

{% for form in inlineformset.forms %} {{ form.id }} {% for field in form.visible_fields %}
{{ field.errors }}
{% endfor %} {% endfor %}
{{ field.label_tag }} {{ field }}
{{ inlineformset.management_form }}
{% endblock %}