{% extends 'layout.html' %} {% load buttons %} {% load helpers %} {% load static %} {% block title %}{{ content_type.model_class|meta:"verbose_name_plural"|bettertitle }}{% endblock %} {% block controls %}
{% if permissions.add and 'add' in action_buttons %} {% add_button content_type.model_class|validated_viewname:"add" %} {% endif %}
{% if permissions.add and 'import' in action_buttons %} {% import_button content_type.model_class|validated_viewname:"import" %} {% endif %} {% if 'export' in action_buttons %} {% export_button content_type %} {% endif %}
{% if request.user.is_authenticated and table_config_form %} {% endif %}
{% endblock %} {% block content %}
{% with bulk_edit_url=content_type.model_class|validated_viewname:"bulk_edit" bulk_delete_url=content_type.model_class|validated_viewname:"bulk_delete" %} {% if permissions.change or permissions.delete %}
{% csrf_token %} {% if table.paginator.num_pages > 1 %} {% endif %} {% include table_template|default:'responsive_table.html' %}
{% block bulk_buttons %}{% endblock %} {% if bulk_edit_url and permissions.change %} {% endif %} {% if bulk_delete_url and permissions.delete %} {% endif %}
{% else %} {% include table_template|default:'responsive_table.html' %} {% endif %} {% endwith %} {% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
{% if filter_form %}
{% block sidebar %}{% endblock %} {% include 'inc/search_panel.html' %}
{% endif %}
{% table_config_form table table_name="ObjectTable" %} {% endblock %} {% block javascript %} {% endblock %}