{% extends base_template_path %} {% load powercrud %} {% load partials %} {% block content %} {% partial pcrud_content %} {% endblock %} {% partialdef pcrud_content %}
{% if conflict_detected %} {% partial conflict_detected %} {% else %} {% partial normal_content %} {% endif %}
{% endpartialdef pcrud_content %} {% partialdef conflict_detected %}

Edit Conflict

{{ conflict_message }}

{{ object }}

{% comment %}Only show button when NOT using modals{% endcomment %} {% if not use_modal %}
{% if use_htmx %} {% else %} Return to List {% endif %}
{% endif %}
{% endpartialdef conflict_detected %} {% partialdef normal_content %}

Are you sure you want to delete the following {{ object_verbose_name }}?

{{ object }}

{% 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 %} {{ form }}
{% endpartialdef normal_content %}