{% extends "base.html" %} {% load neapolitan %} {% load partials %} {% load render_table from django_tables2 %} {% block content %}

{{ object_verbose_name_plural|capfirst }}

{% if create_view_url %}
Add a new {{ object_verbose_name }}
{% endif %}
{% partialdef object-list inline=True %} {% if object_list %} {% if table %} {% render_table table %} {% else %} {% object_list object_list view %} {% endif %} {% else %}

There are no {{ object_verbose_name_plural }}. Create one now?

{% endif %} {% endpartialdef %}
{% endblock content %}