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

Fixes #13706: Restore extra filters dropdown on device interfaces list

This commit is contained in:
Jeremy Stretch
2023-09-11 14:13:55 -04:00
parent b5125e512f
commit 026386db50
3 changed files with 8 additions and 1 deletions

View File

@ -4,6 +4,7 @@
### Bug Fixes ### Bug Fixes
* [#13706](https://github.com/netbox-community/netbox/issues/13706) - Restore extra filters dropdown on device interfaces list
* [#13721](https://github.com/netbox-community/netbox/issues/13721) - Filter VLAN choices by selected site (if any) when creating a prefix * [#13721](https://github.com/netbox-community/netbox/issues/13721) - Filter VLAN choices by selected site (if any) when creating a prefix
--- ---

View File

@ -2,6 +2,10 @@
{% load helpers %} {% load helpers %}
{% load i18n %} {% load i18n %}
{% block table_controls %}
{% include 'dcim/device/inc/interface_table_controls.html' with table_modal="DeviceInterfaceTable_config" %}
{% endblock table_controls %}
{% block bulk_delete_controls %} {% block bulk_delete_controls %}
{{ block.super }} {{ block.super }}
{% with bulk_disconnect_view=child_model|validated_viewname:"bulk_disconnect" %} {% with bulk_disconnect_view=child_model|validated_viewname:"bulk_disconnect" %}

View File

@ -3,7 +3,9 @@
{% load i18n %} {% load i18n %}
{% block content %} {% block content %}
{% include 'inc/table_controls_htmx.html' with table_modal=table_config %} {% block table_controls %}
{% include 'inc/table_controls_htmx.html' with table_modal=table_config %}
{% endblock table_controls %}
<form method="post"> <form method="post">
{% csrf_token %} {% csrf_token %}
<div class="card"> <div class="card">