{% extends 'generic/object.html' %} {% load helpers %} {% load static %} {% block breadcrumbs %}
  • Config Contexts
  • {{ object }}
  • {% 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 %}
    Site Groups {% if object.site_groups.all %}
      {% for sitegroup in object.site_groups.all %}
    • {{ sitegroup }}
    • {% endfor %}
    {% else %} None {% endif %}
    Sites {% if object.sites.all %}
      {% for site in object.sites.all %}
    • {{ site }}
    • {% endfor %}
    {% else %} None {% endif %}
    Device Types {% if object.device_types.all %} {% else %} None {% endif %}
    Roles {% if object.roles.all %} {% 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 %}