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

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

{% if view.controller %} {% eval view.controller.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 'djmvc/_tables2.html' %} {% else %}
{{ view.empty_list_message }}
{% endif %} {% if view.list_actions %} {% endif %} {% endblock %}