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

Use non-card tables for all tabbed views

This commit is contained in:
jeremystretch
2021-07-12 15:36:51 -04:00
parent fbcdae9a6b
commit faa993acfb
9 changed files with 11 additions and 11 deletions

View File

@@ -1,7 +1,8 @@
{% extends base_template %}
{% load render_table from django_tables2 %}
{% block content %}
{% include 'inc/panel_table.html' %}
{% render_table table 'inc/table.html' %}
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
<div class="text-muted">
Change log retention: {% if settings.CHANGELOG_RETENTION %}{{ settings.CHANGELOG_RETENTION }} days{% else %}Indefinite{% endif %}

View File

@@ -1,5 +1,6 @@
{% extends base_template %}
{% load form_helpers %}
{% load render_table from django_tables2 %}
{% render_errors form %}
@@ -23,8 +24,6 @@
</div>
</form>
{% endif %}
<div class="col col-md-9 mb-3">
{% include 'inc/panel_table.html' %}
</div>
{% render_table table 'inc/table.html' %}
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
{% endblock %}