{% extends "base_full.html" %} {% load i18n %} {% load url from future %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block title %}{% trans 'Model:' %} {{ name }}{% endblock title %} {% block content %}

{{ summary }}

{% if description %}

{% filter linebreaksbr %}{% trans description %}{% endfilter %}

{% endif %} {% for field in fields|dictsort:"name" %} {% endfor %}
{% trans 'Field' %} {% trans 'Type' %} {% trans 'Description' %}
{{ field.name }} {{ field.data_type }} {{ field.verbose }}{% if field.help_text %} - {{ field.help_text|safe }}{% endif %}

{% trans 'Back to Data Model Documentation' %}

{% endblock content %}