2021-08-06 15:35:14 -04:00
|
|
|
{% extends 'generic/object_list.html' %}
|
2018-02-02 16:12:57 -05:00
|
|
|
{% load buttons %}
|
2021-08-06 15:35:14 -04:00
|
|
|
{% load helpers %}
|
2021-08-01 21:24:22 -07:00
|
|
|
{% load render_table from django_tables2 %}
|
2016-03-01 11:23:03 -05:00
|
|
|
|
2021-03-13 11:16:29 -07:00
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
|
2021-08-06 15:35:14 -04:00
|
|
|
{% block content-wrapper %}
|
|
|
|
<div class="tab-content">
|
2021-04-18 11:35:42 -07:00
|
|
|
|
2021-08-06 15:35:14 -04:00
|
|
|
{# Conncetions list #}
|
|
|
|
<div class="tab-pane show active" id="object-list" role="tabpanel" aria-labelledby="object-list-tab">
|
|
|
|
{% include 'inc/table_controls.html' %}
|
2021-08-01 21:24:22 -07:00
|
|
|
|
2021-08-06 15:35:14 -04:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<div class="table-responsive">
|
|
|
|
{% render_table table 'inc/table.html' %}
|
|
|
|
</div>
|
2020-11-10 16:00:21 -05:00
|
|
|
</div>
|
2021-08-06 15:35:14 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
|
2016-03-01 11:23:03 -05:00
|
|
|
</div>
|
2021-08-06 15:35:14 -04:00
|
|
|
|
|
|
|
{# Filter form #}
|
|
|
|
{% if filter_form %}
|
|
|
|
<div class="tab-pane show" id="filters-form" role="tabpanel" aria-labelledby="filters-form-tab">
|
|
|
|
{% include 'inc/filter_list.html' %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
{% endblock content-wrapper %}
|