{% extends "base.html" %} {% load form_helpers %} {% load helpers %} {% block content %}
{% csrf_token %}

{% if obj %} {% with obj|get_docs_url as docs_url %} {% if docs_url %} {% endif %} {% endwith %} {% endif %} {% block title %}Add {{ obj_type }}{% if parent %} to {{ parent }}{% endif %}{% endblock title %}

{% if form.non_field_errors %}
Errors
{{ form.non_field_errors }}
{% endif %}
{{ obj_type }}
{% render_form form %}
{% include "inc/extras_features_edit_form_fields.html" with form=model_form %}
Cancel
{% endblock content %}