{% extends 'base.html' %} {% block content %}
{% include "generics/breadcrumbs.html" %}

Confirm deletion of the resource group {{ resource_group.name }}

{% if resource_group.resources.all.count == 0 %} No resources present in the resource group. Can be safely deleted. {% else %} The deletion of this resource group will drive to the deletion of the following resources: {% for resource in resource_group.resources.all %}
  • {{ resource.name }}
  • {% endfor %} {% endif %}
    {% csrf_token %}
    {% endblock %}