{% extends "admin/base_site.html" %} {% load humanize i18n palette palette_admin admin_urls %} {% block topbar %} {% comment %} {% block page_title %} {{ cl.opts.verbose_name_plural|title }} {% endblock page_title %} {% endcomment %} {{ block.super }} {% endblock topbar %} {% block content %} {% with results=cl %} {% with result_list=cl.result_list %}
{{ results.opts.verbose_name|capfirst }}: {{ item|truncatewords:"7" }}
{% elif field_name == 'action_checkbox' %} {% else %} {% if field_name in cl.grid_display_links %}{{ field_name|humanize_name }}: {{ item|getattr:field_name|truncatewords:"7" }}
{% else %}{{ field_name|humanize_name }}: {{ item|getattr:field_name|format_field_value }}
{% endif %} {% endif %} {% endfor %} {% else %} {% for field_name in cl.list_display %} {% if field_name == '__str__' %}{{ results.opts.verbose_name|capfirst }}: {{ item|truncatewords:"7" }}
{% elif field_name == 'action_checkbox' %} {% else %} {% if field_name in cl.grid_display_links %}{{ field_name|humanize_name }}: {{ item|dir }} {{ item|getattr:field_name|truncatewords:"7" }}
{% else %}{{ field_name|humanize_name }}: {{ item|getattr:field_name|format_field_value }}
{% endif %} {% endif %} {% endfor %} {% endif %} {% if action_form %}{% trans "No items to display." %}
| {% for field_name in cl.list_display %} {% if field_name == '__str__' %} | {% trans cl.opts.verbose_name|capfirst %} | {% elif field_name == 'action_checkbox' %} {% else %}{% trans field_name|humanize_name %} | {% endif %} {% endfor %}{% trans "Actions" %} |
|---|---|---|---|
| {% for field_name in cl.list_display %} {% if field_name == '__str__' %} | {{ item|capfirst|truncatewords:"7" }} | {% elif field_name == 'action_checkbox' %} {% else %}{% if field_name in cl.list_display_links %} {{ item|getattr:field_name|format_field_value|truncatewords:"7" }} {% else %} {{ item|getattr:field_name|format_field_value }} {% endif %} | {% endif %} {% endfor %}
{% trans "View" %}
{% trans "Edit" %}
{% if 'delete_{{model.name}}' in user.perms %}
{{ user.perms }}
{% trans "Delete" %}
{% endif %}
|
{% trans "No items to display." %}