{% extends "djcrud/base.html" %} {% load djcrud django_tables2 i18n %} {% block content %}

{% if view.icon %}{% endif %} {{ view.title }}

{% if view.router %} {% eval view.router.get_tagged_views 'model' request=request as model_menu %} {% endif %} {% for action in model_menu %} {% if action.icon %}{% endif %} {{ action.title }} {% endfor %}
{% if view.table %} {% render_table view.table 'djcrud/_tables2.html' %} {% else %}
{{ view.empty_list_message }}
{% endif %} {% if view.list_actions %} {% endif %} {% endblock %}