1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

35 lines
968 B
HTML
Raw Normal View History

{% extends 'generic/object_list.html' %}
{% load buttons %}
{% load helpers %}
{% 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 %}
{% block content-wrapper %}
<div class="tab-content">
2021-04-18 11:35:42 -07:00
{# Conncetions list #}
<div class="tab-pane show active" id="object-list" role="tabpanel" aria-labelledby="object-list-tab">
{% include 'inc/table_controls.html' %}
<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>
</div>
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
2016-03-01 11:23:03 -05:00
</div>
{# 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 %}