{% extends base_template %} {% load helpers %} {% block title %}{{ block.super }} - Config Context{% endblock %} {% block content %}
Rendered Context
{{ rendered_context|render_json }}
Local Context
{% if obj.local_context_data %}
{{ obj.local_context_data|render_json }}
{% else %} None {% endif %}
Source Contexts
{% for context in source_contexts %}
{{ context.weight }}
{{ context.name }} {% if context.description %}
{{ context.description }} {% endif %}
{{ context.data|render_json }}
{% empty %}
None found
{% endfor %}
{% endblock %}