Quellcode durchsuchen

Fixes #8301: Fix delete button for various object children views

jeremystretch vor 4 Jahren
Ursprung
Commit
02519b270e

+ 1 - 0
docs/release-notes/version-3.1.md

@@ -12,6 +12,7 @@
 
 * [#8285](https://github.com/netbox-community/netbox/issues/8285) - Fix `cluster_count` under tenant REST API serializer
 * [#8287](https://github.com/netbox-community/netbox/issues/8287) - Correct label in export template form
+* [#8301](https://github.com/netbox-community/netbox/issues/8301) - Fix delete button for various object children views
 
 ---
 

+ 1 - 0
netbox/templates/dcim/device/consoleports.html

@@ -45,5 +45,6 @@
 {% endblock %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/dcim/device/consoleserverports.html

@@ -45,5 +45,6 @@
 {% endblock %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/dcim/device/devicebays.html

@@ -42,5 +42,6 @@
 {% endblock %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/dcim/device/frontports.html

@@ -45,5 +45,6 @@
 {% endblock %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/dcim/device/interfaces.html

@@ -80,5 +80,6 @@
 {% endblock %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/dcim/device/inventory.html

@@ -42,5 +42,6 @@
 {% endblock %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/dcim/device/poweroutlets.html

@@ -45,5 +45,6 @@
 {% endblock %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/dcim/device/powerports.html

@@ -45,5 +45,6 @@
 {% endblock %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/dcim/device/rearports.html

@@ -45,5 +45,6 @@
 {% endblock %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/ipam/aggregate/prefixes.html

@@ -40,5 +40,6 @@
 {% endblock %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/ipam/iprange/ip_addresses.html

@@ -38,5 +38,6 @@
 {% endblock %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/ipam/prefix/ip_addresses.html

@@ -38,5 +38,6 @@
 {% endblock %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/ipam/prefix/ip_ranges.html

@@ -38,5 +38,6 @@
 {% endblock %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/ipam/prefix/prefixes.html

@@ -40,5 +40,6 @@
 {% endblock %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/ipam/vlan/interfaces.html

@@ -14,5 +14,6 @@
 {% endblock content %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/ipam/vlan/vminterfaces.html

@@ -14,5 +14,6 @@
 {% endblock content %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/virtualization/cluster/devices.html

@@ -24,5 +24,6 @@
 {% endblock content %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/virtualization/cluster/virtual_machines.html

@@ -29,5 +29,6 @@
 {% endblock content %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}

+ 1 - 0
netbox/templates/virtualization/virtualmachine/interfaces.html

@@ -40,5 +40,6 @@
 {% endblock content %}
 
 {% block modals %}
+  {{ block.super }}
   {% table_config_form table %}
 {% endblock modals %}