mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
23 lines
629 B
HTML
23 lines
629 B
HTML
{% extends 'layout.html' %}
|
|
{% load buttons %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block extra_controls %}{% export_button content_type %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row mb-3">
|
|
<div class="col-md-9">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
{% include 'responsive_table.html' %}
|
|
</div>
|
|
</div>
|
|
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
|
|
</div>
|
|
<div class="col-md-3 float-end right-side-panel noprint">
|
|
{% include 'inc/search_panel.html' %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|