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

{% block title %}{{ configcontext }}{% endblock %}

{% endblock %} {% block content %}
Config Context
Name {{ configcontext.name }}
Weight {{ configcontext.weight }}
Description {% if configcontext.description %} {{ configcontext.description }} {% else %} N/A {% endif %}
Active {% if configcontext.is_active %} {% else %} {% endif %}
Assignment
Regions {% if configcontext.regions.all %}
    {% for region in configcontext.regions.all %}
  • {{ region }}
  • {% endfor %}
{% else %} None {% endif %}
Sites {% if configcontext.sites.all %}
    {% for site in configcontext.sites.all %}
  • {{ site }}
  • {% endfor %}
{% else %} None {% endif %}
Roles {% if configcontext.roles.all %}
    {% for role in configcontext.roles.all %}
  • {{ role }}
  • {% endfor %}
{% else %} None {% endif %}
Platforms {% if configcontext.platforms.all %}
    {% for platform in configcontext.platforms.all %}
  • {{ platform }}
  • {% endfor %}
{% else %} None {% endif %}
Tenants {% if configcontext.tenants.all %}
    {% for tenant in configcontext.tenants.all %}
  • {{ tenant }}
  • {% endfor %}
{% else %} None {% endif %}
Data
{{ configcontext.data|render_json }}
{% endblock %}