{% extends 'generic/object_list.html' %} {% load buttons %} {% load helpers %} {% load render_table from django_tables2 %} {% block title %}{{ title }}{% endblock %} {% block content-wrapper %}
{# Conncetions list #}
{% include 'inc/table_controls.html' %}
{% render_table table 'inc/table.html' %}
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
{# Filter form #} {% if filter_form %}
{% include 'inc/filter_list.html' %}
{% endif %}
{% endblock content-wrapper %}