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

Remove obsolete responsive_table.html template

This commit is contained in:
jeremystretch
2021-09-15 12:41:21 -04:00
parent baf045aed6
commit 25f501fb12
9 changed files with 29 additions and 21 deletions

View File

@ -1,4 +1,5 @@
{% load helpers %}
{% load render_table from django_tables2 %}
{% if permissions.change or permissions.delete %}
<form method="post" class="form form-horizontal">
@ -28,7 +29,9 @@
</div>
{% endif %}
{% include table_template|default:'inc/responsive_table.html' %}
<div class="table-responsive">
{% render_table table 'inc/table.html' %}
</div>
<div class="float-start noprint">
{% block extra_actions %}{% endblock %}
@ -48,7 +51,9 @@
</form>
{% else %}
{% include table_template|default:'inc/responsive_table.html' %}
<div class="table-responsive">
{% render_table table 'inc/table.html' %}
</div>
{% endif %}