{% extends base_template_path %} {% load nominopolitan %} {% load partials %} {% if use_crispy %} {% include framework_template_path|add:"/crispy_partials.html#load_tags" %} {% endif %} {% block content %} {% partial nm_content %} {% endblock %} {% partialdef nm_content %}

{% if object %}Edit {{object_verbose_name}}{% else %}Create {{object_verbose_name}}{% endif %}

{% csrf_token %} {# Add hidden fields for all current GET params except csrf, page, and form fields #} {% for key, values in request.GET.lists %} {% if key != 'csrfmiddlewaretoken' and key != 'page' %} {% for value in values %} {% endfor %} {% endif %} {% endfor %} {% if use_crispy %} {% include framework_template_path|add:"/crispy_partials.html#crispy_form" %} {% else %} {{ form }} {% endif %}
{% endpartialdef nm_content %}