{% extends base_template %} {% load helpers %} {% load static %} {% block title %}{{ block.super }} - Config Context{% endblock %} {% block content %}
Rendered Context {% include 'extras/inc/json_format.html' %}
{% include 'extras/inc/json_data.html' with data=rendered_context format=format %}
Local Context
{% if object.local_context_data %} {% if object.local_context_schema %} Schema {{ object.local_context_schema|hyperlinked_object }} {% endif %} {% if object.local_context_data_owner %} Owned by {{ object.local_context_data_owner|hyperlinked_object }} {% endif %} {% include 'extras/inc/json_data.html' with data=object.local_context_data format=format %} {% else %} None {% endif %}
Source Contexts
{% for context in source_contexts %}
{{ context.weight }}
{{ context|hyperlinked_object }} {% if context.description %}
{{ context.description }} {% endif %} {% include 'extras/inc/json_data.html' with data=context.data format=format %}
{% empty %}
None found
{% endfor %}
{% endblock %}