{% extends "admin/base_site.html" %} {% load i18n static admin_modify byte_filters %} {% block title %}Inspect {{ original }}{% endblock %} {% block extrahead %}{{ block.super }} {% url 'admin:jsi18n' as jsi18nurl %} {{ media }} {% endblock %} {% block extrastyle %} {{ block.super }} {% get_static_prefix as STATIC_PREFIX %} {% get_media_prefix as MEDIA_PREFIX %} {% endblock %} {% block coltype %}{% if ordered_objects %}colMS{% else %}colM{% endif %}{% endblock %} {% block bodyclass %}{{ opts.app_label }}-{{ opts.object_name.lower }} inspect-form{% endblock %} {% if is_popup %} {% block breadcrumbs %} {% endblock %} {% endif %} {% block content %} {% spaceless %}

{% trans "Details" %}

{% for section, details in sections.items %}

{{ section|capfirst }}

{% for key, value in details.items %} {% endfor %}
{% trans "Name" %} {% trans "Value" %}
{{ key }} {{ value }}
{% empty %}

{{ status }}

{% endfor %}
{% endspaceless %} {% endblock %}