add holes
This commit is contained in:
parent
0496575d25
commit
3fa471135f
6 changed files with 62 additions and 13 deletions
|
@ -165,6 +165,18 @@ class Door(GeometryMapItem):
|
|||
default_related_name = 'doors'
|
||||
|
||||
|
||||
class Hole(GeometryMapItem):
|
||||
"""
|
||||
A hole in the ground of a room, e.g. for stairs.
|
||||
"""
|
||||
geomtype = 'polygon'
|
||||
|
||||
class Meta:
|
||||
verbose_name = _('Hole')
|
||||
verbose_name_plural = _('Holes')
|
||||
default_related_name = 'holes'
|
||||
|
||||
|
||||
class ElevatorLevel(GeometryMapItem):
|
||||
"""
|
||||
An elevator Level
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue