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

23 lines
646 B
HTML
Raw Normal View History

{% extends 'base/layout.html' %}
{% load buttons %}
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 %}
2021-04-18 11:35:42 -07:00
<div class="row mb-3">
2021-04-30 15:55:37 -07:00
<div class="col col-md-9">
2021-04-18 11:35:42 -07:00
<div class="card">
<div class="card-body">
{% include 'inc/responsive_table.html' %}
2021-04-18 11:35:42 -07:00
</div>
2020-11-10 16:00:21 -05:00
</div>
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
2016-03-01 11:23:03 -05:00
</div>
2021-04-30 15:55:37 -07:00
<div class="col col-md-3 float-end right-side-panel noprint">
2021-04-18 11:35:42 -07:00
{% include 'inc/search_panel.html' %}
</div>
2016-03-01 11:23:03 -05:00
</div>
{% endblock %}