add level_index so short_label can look nicer

This commit is contained in:
Laura Klünder 2024-12-19 10:56:38 +01:00
parent 6167c92e98
commit fe98f5e618
14 changed files with 89 additions and 31 deletions

View file

@ -47,6 +47,7 @@ class BaseLevelGeometries:
pk: int
on_top_of_id: int | None
level_index: str
short_label: str
base_altitude: int
default_height: int
@ -360,6 +361,7 @@ class SingleLevelGeometries(BaseLevelGeometries):
pk=level.pk,
on_top_of_id=level.on_top_of_id,
short_label=level.short_label,
level_index=level.level_index,
base_altitude=base_altitude,
default_height=default_height,
door_height=door_height,