{% extends 'base.html' %} {% block main %}
{% csrf_token %} {% if attribute.consumers.all|length > 0 %}

Linked consumer resource group attribute

{% for consumer in attribute.consumers.all %} {% endfor %}
Resource group Computable attribute
{{ consumer.resource_group.name }} {{ consumer.name }}
{% endif %} {% if attribute.producers.all|length > 0 %}

Linked producer resource group attribute

{% for producer in attribute.producers.all %} {% endfor %}
Resource group Attribute
{{ producer.resource_group.name }} {{ producer.name }}
{% endif %} Cancel
{% endblock %}