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

25 lines
733 B
HTML
Raw Normal View History

{% extends 'base/layout.html' %}
{% load buttons %}
{% 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-04-18 11:35:42 -07:00
{% block extra_controls %}{% export_button content_type %}{% endblock %}
2016-03-01 11:23:03 -05:00
{% block content %}
<div class="row mb-3">
<div class="col col-md-7 col-lg-8 col-xl-9 col-xxl-10">
{% include 'inc/table_controls.html' %}
<div class="table-responsive">
{% render_table table 'inc/table.html' %}
2021-04-18 11:35:42 -07:00
</div>
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
2020-11-10 16:00:21 -05:00
</div>
{% if filter_form %}
{% include 'inc/filter_list.html' %}
{% endif %}
2016-03-01 11:23:03 -05:00
</div>
{% endblock %}