mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 09:51:22 -06:00
Fixes #14517: Ensure reservations tab is always displayed under rack view
This commit is contained in:
parent
d6c8d1581c
commit
b955751349
@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
|
* [#14517](https://github.com/netbox-community/netbox/issues/14517) - Ensure reservations tab is always displayed under rack view
|
||||||
* [#14549](https://github.com/netbox-community/netbox/issues/14549) - Fix association of job results when executing scripts via `runscript` management command
|
* [#14549](https://github.com/netbox-community/netbox/issues/14549) - Fix association of job results when executing scripts via `runscript` management command
|
||||||
* [#14560](https://github.com/netbox-community/netbox/issues/14560) - Do not escape exclamation marks in custom link URLs
|
* [#14560](https://github.com/netbox-community/netbox/issues/14560) - Do not escape exclamation marks in custom link URLs
|
||||||
* [#14575](https://github.com/netbox-community/netbox/issues/14575) - Fix display of the tags column under VDC table
|
* [#14575](https://github.com/netbox-community/netbox/issues/14575) - Fix display of the tags column under VDC table
|
||||||
|
@ -695,8 +695,7 @@ class RackRackReservationsView(generic.ObjectChildrenView):
|
|||||||
label=_('Reservations'),
|
label=_('Reservations'),
|
||||||
badge=lambda obj: obj.reservations.count(),
|
badge=lambda obj: obj.reservations.count(),
|
||||||
permission='dcim.view_rackreservation',
|
permission='dcim.view_rackreservation',
|
||||||
weight=510,
|
weight=510
|
||||||
hide_if_empty=True
|
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_children(self, request, parent):
|
def get_children(self, request, parent):
|
||||||
|
Loading…
Reference in New Issue
Block a user