Merge pull request #3754 from netbox-community/2248-svg-rack-elevations

2248 svg rack elevations
This commit is contained in:
John Anderson
2019-12-11 14:26:32 -05:00
committed by GitHub
15 changed files with 318 additions and 264 deletions

View File

@@ -105,6 +105,17 @@ class RackDimensionUnitChoices(ChoiceSet):
}
class RackElecationDetailRenderFormatChoices(ChoiceSet):
RENDER_FORMAT_JSON = 'json'
RENDER_FORMAT_SVG = 'svg'
CHOICES = (
(RENDER_FORMAT_JSON, 'json'),
(RENDER_FORMAT_SVG, 'svg')
)
#
# DeviceTypes
#