{% extends "base.html" %} {% block title %}{{ action }} {{ config.title }} | Autocensup{% endblock %} {% block page_pretitle %}Cadastros{% endblock %} {% block page_title %}{{ action }} {{ config.title }}{% endblock %} {% block page_actions %} Voltar {% endblock %} {% block content %}
{% csrf_token %}
{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% for field in form %}
{% if field.field.widget.input_type == "checkbox" %} {% else %} {{ field }} {% endif %} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
{% endblock %}