{% extends "admin/base_site.html" %} {% load humanize i18n palette palette_admin admin_urls %} {% block content %} {% with results=cl %} {% with result_list=cl.result_list %}
{{ opts.verbose_name|capfirst }}: {{ item|getattr:field_name|truncatewords:10 }}
{% elif field_name == 'action_checkbox' %} {% else %}{{ field_name|capfirst }}: {{ item|getattr:field_name|truncatewords:10 }}
{% endif %} {% endfor %} {% 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|capfirst %} | {% endif %} {% endfor %}{% trans "Actions" %} |
|---|---|---|---|
| {% for field_name in cl.list_display %} {% if field_name == '__str__' %} | {{ item|capfirst }} | {% elif field_name == 'action_checkbox' %} {% else %}{{ item|getattr:field_name }} | {% endif %} {% endfor %}
{% trans "View" %}
{% trans "Edit" %}
{% if 'delete_{{model.name}}' in user.perms %}
{{ user.perms }}
{% trans "Delete" %}
{% endif %}
|
{% trans "No items to display." %}