mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
* Fixes: #13918 - Add facilities field to Location model. * Stupidly forgot to `git add` * Fix errant reference to site. * Misc cleanup --------- Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
33 lines
912 B
Markdown
33 lines
912 B
Markdown
# Locations
|
|
|
|
[Racks](./rack.md) and [devices](./device.md) can be grouped by location within a [site](./site.md). A location may represent a floor, room, cage, or similar organizational unit. Locations can be nested to form a hierarchy. For example, you may have floors within a site, and rooms within a floor.
|
|
|
|
## Fields
|
|
|
|
### Site
|
|
|
|
The parent [site](./site.md) to which this location belongs.
|
|
|
|
### Parent
|
|
|
|
The parent location of which this location is a child (optional).
|
|
|
|
### Name
|
|
|
|
A unique human-friendly name.
|
|
|
|
### Slug
|
|
|
|
A unique URL-friendly identifier. (This value can be used for filtering.)
|
|
|
|
### Status
|
|
|
|
The location's operational status.
|
|
|
|
!!! tip
|
|
Additional statuses may be defined by setting `Location.status` under the [`FIELD_CHOICES`](../../configuration/data-validation.md#field_choices) configuration parameter.
|
|
|
|
### Facility
|
|
|
|
Data center or facility designation for identifying the location.
|