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:
@@ -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 %}
|
||||
|
@@ -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 %}
|
||||
|
Reference in New Issue
Block a user