{% load i18n %} {% load crud_tags %}
{{ field_name.0 }} | {% endfor %}{% trans "Actions" %} | {% endblock thead %} {% block tbody %} {% for object in object_list %}
---|---|
{% with column=field_name.1|lower|add:".html" %} {% include "cruds/columns/"|add:column %} {% endwith %} {# typefield #} | {% endfor %}{% crud_inline_url base_model object 'detail' namespace as url %} {% if url and 'detail' in views_available %} {% trans "Show" %} {% endif %} {% crud_inline_url base_model object 'update' namespace as url %} {% if url and 'update' in views_available %} {% trans "Edit" %} {% endif %} {% crud_inline_url base_model object 'delete' namespace as url %} {% if url and 'delete' in views_available %} {% trans "Delete" %} {% endif %} |
{% trans "No items yet." %} |