{% extends 'generic/bulk_delete.html' %} {% comment %} Derived from generic/bulk_delete.html. The Delete button carries a conditional `disabled` attribute that cannot be injected via block.super, so the content block is duplicated here. Keep in sync with the upstream template manually. {% endcomment %} {% load form_helpers %} {% load helpers %} {% load i18n %} {% load render_table from django_tables2 %} {% block content %} {# Confirmation form #}
{% if branch_warning %} {% include 'netbox_custom_objects/inc/branch_warning.html' %} {% endif %}
{% csrf_token %} {# Form fields #} {% for field in form.hidden_fields %} {{ field }} {% endfor %} {# Meta fields #}
{% if form.changelog_message %} {% render_field form.changelog_message %} {% endif %} {% render_field form.background_job %}
{# Form buttons #}
{% trans "Cancel" %}
{# /Confirmation form #} {# Selected objects list #}
{% render_table table 'inc/table.html' %}
{# /Selected objects list #} {% endblock content %}