{% extends 'base.html' %} {% load helpers %} {% load static %} {% block header %}
{% if perms.extras.change_configcontext %} Edit this config context {% endif %}

{% block title %}{{ object }}{% endblock %}

{% endblock %} {% block content %}
Config Context
Name {{ object.name }}
Weight {{ object.weight }}
Description {{ object.description|placeholder }}
Active {% if object.is_active %} {% else %} {% endif %}
Assignment
Regions {% if object.regions.all %}
    {% for region in object.regions.all %}
  • {{ region }}
  • {% endfor %}
{% else %} None {% endif %}
Sites {% if object.sites.all %}
    {% for site in object.sites.all %}
  • {{ site }}
  • {% endfor %}
{% else %} None {% endif %}
Roles {% if object.roles.all %}
    {% for role in object.roles.all %}
  • {{ role }}
  • {% endfor %}
{% else %} None {% endif %}
Platforms {% if object.platforms.all %}
    {% for platform in object.platforms.all %}
  • {{ platform }}
  • {% endfor %}
{% else %} None {% endif %}
Cluster Groups {% if object.cluster_groups.all %} {% else %} None {% endif %}
Clusters {% if object.clusters.all %}
    {% for cluster in object.clusters.all %}
  • {{ cluster }}
  • {% endfor %}
{% else %} None {% endif %}
Tenant Groups {% if object.tenant_groups.all %} {% else %} None {% endif %}
Tenants {% if object.tenants.all %}
    {% for tenant in object.tenants.all %}
  • {{ tenant }}
  • {% endfor %}
{% else %} None {% endif %}
Tags {% if object.tags.all %}
    {% for tag in object.tags.all %}
  • {{ tag }}
  • {% endfor %}
{% else %} None {% endif %}
Data {% include 'extras/inc/configcontext_format.html' %}
{% include 'extras/inc/configcontext_data.html' with data=object.data format=format %}
{% endblock %}