{% extends "admin/base_site.html" %}
{% load i18n %}
{% block extrahead %}
{{ block.super }}
{% endblock %}
{% block breadcrumbs %}
{{ name }}
{{ summary }}
{{ description }}
{% trans 'Fields' %}
{% trans 'Field' %} |
{% trans 'Type' %} |
{% trans 'Description' %} |
{% for field in fields|dictsort:"name" %}
{{ field.name }} |
{{ field.data_type }} |
{{ field.verbose }}{% if field.help_text %} - {{ field.help_text|safe }}{% endif %} |
{% endfor %}
{% if methods %}
{% trans 'Methods with arguments' %}
{% trans 'Method' %} |
{% trans 'Arguments' %} |
{% trans 'Description' %} |
{% for method in methods|dictsort:"name" %}
{{ method.name }} |
{{ method.arguments }} |
{{ method.verbose }} |
{% endfor %}
{% endif %}
‹ {% trans 'Back to Model documentation' %}
{% endblock %}