{% extends 'base.html' %} {% load helpers %} {% load buttons %} {% load plugin_helpers %} {% block buttons %} {% if request.user.is_authenticated and table_config_form %} {% endif %} {% if permissions.add and 'add' in action_buttons %} {% add_button content_type.model_class|url_name:"add" %} {% endif %} {% if permissions.add and 'import' in action_buttons %} {% import_button content_type.model_class|url_name:"import" %} {% endif %} {% if 'export' in action_buttons %} {% export_button content_type %} {% endif %} {%endblock %} {% block content %}

{% block title %}Oxidized Nodes {% endblock %}

{% if permissions.change or permissions.delete %}
{% csrf_token %} {% if table.paginator.num_pages > 1 %} {% endif %} {% include table_template|default:'responsive_table.html' %}
{% 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 %}
{% if filter_form %}
{% include 'inc/search_panel.html' %}
{% endif %}
{% endblock %}