mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 01:41:22 -06:00
Add disable_htmx property on ObjectChildrenView to allow IP assignment flow to avoid htmx fragmentary rendering on object save
This commit is contained in:
parent
37c9ed2fef
commit
fa8f2ac377
@ -1971,6 +1971,7 @@ class DeviceInterfacesView(DeviceComponentsView):
|
||||
filterset = filtersets.InterfaceFilterSet
|
||||
filterset_form = forms.InterfaceFilterForm
|
||||
template_name = 'dcim/device/interfaces.html'
|
||||
disable_htmx = True
|
||||
tab = ViewTab(
|
||||
label=_('Interfaces'),
|
||||
badge=lambda obj: obj.vc_interfaces().count(),
|
||||
|
@ -96,6 +96,8 @@ class ObjectChildrenView(ObjectView, ActionsMixin, TableMixin):
|
||||
filterset = None
|
||||
filterset_form = None
|
||||
template_name = 'generic/object_children.html'
|
||||
# Currently used only to work around the singular behavior of the IP assignment flow in DeviceInterfacesView
|
||||
disable_htmx = False
|
||||
|
||||
def get_children(self, request, parent):
|
||||
"""
|
||||
@ -142,7 +144,7 @@ class ObjectChildrenView(ObjectView, ActionsMixin, TableMixin):
|
||||
table = self.get_table(table_data, request, has_bulk_actions)
|
||||
|
||||
# If this is an HTMX request, return only the rendered table HTML
|
||||
if htmx_partial(request):
|
||||
if htmx_partial(request) and not self.disable_htmx:
|
||||
return render(request, 'htmx/table.html', {
|
||||
'object': instance,
|
||||
'table': table,
|
||||
|
Loading…
Reference in New Issue
Block a user