{% extends 'extras/configcontext/_base.html' %} {% load render_table from django_tables2 %} {% load helpers %} {% block subcontent %}
Details
Name {{ instance.name }}
Description {{ instance.description|render_none }}
Active {{ instance.is_active|boolean_as_icon }}
Last update {{ instance.updated|date_span }}
Data {% include 'includes/configcontext_format.html' with format=configcontext_format %}
{% include 'includes/configcontext_data.html' with data=instance.data format=configcontext_format %}
{% render_table assignments_table 'includes/table.html' %} {% include 'includes/pagination.html' with paginator=assignments_table.paginator page=assignments_table.page %}
{% endblock %}