{% extends "layout.html" %} {% block title %}{{ resource.label_plural }} — {{ panel_title }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block page_heading %}

{{ resource.label_plural }}

{% if total is defined %}

{{ total }} record{{ 's' if total != 1 }}

{% endif %}
{% endblock %} {% block header_actions %} {% for action in resource.list_actions %} {% if has_perm(resource.slug + ':action') %} {% endif %} {% endfor %} {% if resource.can_create and has_perm(resource.slug + ':create') %} New {{ resource.label }} {% endif %} {% endblock %} {% block flash %} {% if flash == 'created' %}
{{ resource.label }} created successfully.
{% elif flash == 'saved' %}
Changes saved.
{% elif flash == 'action_ok' %}
Action completed.
{% elif flash == 'deleted' %}
{{ resource.label }} deleted.
{% endif %} {% endblock %} {% block content %}
{% include "partials/table.html" %}
{% endblock %}