{% load powercrud_partials %}
{% if errors %}
{% if bulk_outcomes_template_paths %}
{% include bulk_outcomes_template_paths with bulk_outcome="operation_errors" %}
{% else %}
{% include "powercrud/packs/bootstrap5/partial/bulk_outcomes.html" with bulk_outcome="operation_errors" %}
{% endif %}
{% endif %}
{% partial full_form %}
{% partialdef full_form %}
{% if bulk_form_template_paths %}
{% include bulk_form_template_paths %}
{% else %}
{% include framework_template_path|add:"/partial/bulk_form.html" %}
{% endif %}
{% endpartialdef full_form %}
{% partialdef async_queue_success %}
{% if bulk_outcomes_template_paths %}
{% include bulk_outcomes_template_paths with bulk_outcome="queued" %}
{% else %}
{% include "powercrud/packs/bootstrap5/partial/bulk_outcomes.html" with bulk_outcome="queued" %}
{% endif %}
{% endpartialdef async_queue_success %}