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,5 +1,6 @@
{% extends 'virtualization/cluster/base.html' %}
{% load helpers %}
{% load render_table from django_tables2 %}
{% block content %}
<div class="row">
@@ -10,8 +11,8 @@
</h5>
<form action="{% url 'virtualization:cluster_remove_devices' pk=object.pk %}" method="post">
{% csrf_token %}
<div class="card-body">
{% include 'inc/responsive_table.html' with table=devices_table %}
<div class="card-body table-responsive">
{% render_table devices_table 'inc/table.html' %}
</div>
{% if perms.virtualization.change_cluster %}
<div class="card-footer noprint">

View File

@@ -1,5 +1,6 @@
{% extends 'virtualization/cluster/base.html' %}
{% load helpers %}
{% load render_table from django_tables2 %}
{% block content %}
<div class="row">
@@ -8,8 +9,8 @@
<h5 class="card-header">
Virtual Machines
</h5>
<div class="card-body">
{% include 'inc/responsive_table.html' with table=virtualmachines_table %}
<div class="card-body table-responsive">
{% render_table virtualmachines_table 'inc/table.html' %}
</div>
</div>
</div>