{% extends 'base.html' %} {% block content %}
{% include "generics/breadcrumbs.html" %}
{% if resource_pool.attribute_definitions.all.count == 0 %} No attributes present in the resource pool. Can be safely deleted. {% else %} The deletion of this resource pool will drive to the deletion of the following attributes:
    {% for attribute in resource_pool.attribute_definitions.all %}
  • {{ attribute.name }}
  • {% endfor %}
{% endif %}
{% csrf_token %} Cancel
{% endblock %}