{% extends 'generic/object.html' %} {% load helpers %} {% load static %} {% block content %}
Config Context
Name {{ object.name }}
Weight {{ object.weight }}
Description {{ object.description|placeholder }}
Active {% if object.is_active %} {% else %} {% endif %}
Assignment
{% for title, objects in assigned_objects %} {% endfor %}
{{ title }}
    {% for object in objects %}
  • {{ object }}
  • {% empty %}
  • None
  • {% endfor %}
Data
{% include 'extras/inc/configcontext_format.html' %}
{% include 'extras/inc/configcontext_data.html' with data=object.data format=format %}
{% endblock %}