{% extends "admin/base_site.html" %} {% load i18n %} {% load inspect_tags %} {% block extrastyle %} {{block.super}} {% endblock %} {% block extrahead %} {{block.super}} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% csrf_token %}
{% if model %}
{% if display_as == "tabs" %} {% endif %}

{% trans "Fields" %}

    {% for f in model.fields %} {% include "included_item_inspected.html" %} {% endfor %}

{% trans "Properties" %}

    {% for f in model.properties %} {% include "included_item_inspected.html" %} {% endfor %}

{% trans "Methods" %}

    {% for f in model.methods %} {% include "included_item_inspected.html" %} {% endfor %}

{% trans "Relation fields" %}

    {% for f in model.relation_fields %} {% include "included_item_inspected.html" %} {% endfor %}

{% trans "Many fields" %}

    {% for f in model.many_fields %} {% include "included_item_inspected.html" %} {% endfor %}

{% trans "Attributes" %}

    {% for f in model.attributes %} {% include "included_item_inspected.html" %} {% endfor %}

{% trans "Items" %}

    {% for f in model.items %} {% include "included_item_inspected.html" %} {% endfor %}
{% endif %} {% endblock %}