mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Closes #8805: Add "mixed" option for device airflow indication
This commit is contained in:
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
### Enhancements
|
### Enhancements
|
||||||
|
|
||||||
|
* [#8805](https://github.com/netbox-community/netbox/issues/8805) - Add "mixed" option for device airflow indication
|
||||||
* [#8894](https://github.com/netbox-community/netbox/issues/8894) - Include full names when listing users
|
* [#8894](https://github.com/netbox-community/netbox/issues/8894) - Include full names when listing users
|
||||||
* [#8998](https://github.com/netbox-community/netbox/issues/8998) - Enable filtering racks & reservations by site group
|
* [#8998](https://github.com/netbox-community/netbox/issues/8998) - Enable filtering racks & reservations by site group
|
||||||
* [#9122](https://github.com/netbox-community/netbox/issues/9122) - Introduce `clearcache` management command & clear cache during upgrade
|
* [#9122](https://github.com/netbox-community/netbox/issues/9122) - Introduce `clearcache` management command & clear cache during upgrade
|
||||||
|
@ -159,6 +159,7 @@ class DeviceAirflowChoices(ChoiceSet):
|
|||||||
AIRFLOW_RIGHT_TO_LEFT = 'right-to-left'
|
AIRFLOW_RIGHT_TO_LEFT = 'right-to-left'
|
||||||
AIRFLOW_SIDE_TO_REAR = 'side-to-rear'
|
AIRFLOW_SIDE_TO_REAR = 'side-to-rear'
|
||||||
AIRFLOW_PASSIVE = 'passive'
|
AIRFLOW_PASSIVE = 'passive'
|
||||||
|
AIRFLOW_MIXED = 'mixed'
|
||||||
|
|
||||||
CHOICES = (
|
CHOICES = (
|
||||||
(AIRFLOW_FRONT_TO_REAR, 'Front to rear'),
|
(AIRFLOW_FRONT_TO_REAR, 'Front to rear'),
|
||||||
@ -167,6 +168,7 @@ class DeviceAirflowChoices(ChoiceSet):
|
|||||||
(AIRFLOW_RIGHT_TO_LEFT, 'Right to left'),
|
(AIRFLOW_RIGHT_TO_LEFT, 'Right to left'),
|
||||||
(AIRFLOW_SIDE_TO_REAR, 'Side to rear'),
|
(AIRFLOW_SIDE_TO_REAR, 'Side to rear'),
|
||||||
(AIRFLOW_PASSIVE, 'Passive'),
|
(AIRFLOW_PASSIVE, 'Passive'),
|
||||||
|
(AIRFLOW_MIXED, 'Mixed'),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user