Skip to content

Commit

Permalink
Fixes #13706: Restore extra filters dropdown on device interfaces list
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Sep 11, 2023
1 parent b5125e5 commit 026386d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/release-notes/version-3.6.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### 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

---
Expand Down
4 changes: 4 additions & 0 deletions netbox/templates/dcim/device/interfaces.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
{% load helpers %}
{% 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.super }}
{% with bulk_disconnect_view=child_model|validated_viewname:"bulk_disconnect" %}
Expand Down
4 changes: 3 additions & 1 deletion netbox/templates/generic/object_children.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
{% load i18n %}

{% 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">
{% csrf_token %}
<div class="card">
Expand Down

0 comments on commit 026386d

Please sign in to comment.