From 12402f4c309c8385256fd0c148d074a2ef3c27a6 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 21 Sep 2020 15:14:44 -0400 Subject: [PATCH] Fixes #5156: Add missing "add" button to rack reservations list --- docs/release-notes/version-2.9.md | 1 + netbox/dcim/views.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/release-notes/version-2.9.md b/docs/release-notes/version-2.9.md index 6e3919542..e6f1e6d5f 100644 --- a/docs/release-notes/version-2.9.md +++ b/docs/release-notes/version-2.9.md @@ -18,6 +18,7 @@ * [#5118](https://github.com/netbox-community/netbox/issues/5118) - Specifying an empty list of tags should clear assigned tags (REST API) * [#5133](https://github.com/netbox-community/netbox/issues/5133) - Fix disassociation of an IP address from a VM interface * [#5136](https://github.com/netbox-community/netbox/issues/5136) - Fix exception when bulk editing interface 802.1Q mode +* [#5156](https://github.com/netbox-community/netbox/issues/5156) - Add missing "add" button to rack reservations list --- diff --git a/netbox/dcim/views.py b/netbox/dcim/views.py index ab84ba64b..77ca0b534 100644 --- a/netbox/dcim/views.py +++ b/netbox/dcim/views.py @@ -414,7 +414,6 @@ class RackReservationListView(ObjectListView): filterset = filters.RackReservationFilterSet filterset_form = forms.RackReservationFilterForm table = tables.RackReservationTable - action_buttons = ('export',) class RackReservationView(ObjectView):