{% extends 'base.html' %} {% load helpers%} {% load buttons %} {% load static %} {% block content %}
{% if request.user.is_authenticated and table_config_form %} {% endif %} {% block buttons %}{% endblock %}

{% block title %}{%endblock%}

{% 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 %} {% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
{% if table_config_form %} {% include 'inc/table_config_form.html' %} {% endif %} {% comment %}
{% include 'inc/search_panel.html'%}
{% endcomment %}
{% endblock %}