Improving nickname display

This commit is contained in:
2023-03-07 14:09:41 +01:00
parent 0d484209f6
commit f94fdcd141

View File

@@ -18,7 +18,10 @@ class Individual(EntityType):
firstname: Indexed(str) firstname: Indexed(str)
middlename: Indexed(str) = "" middlename: Indexed(str) = ""
lastname: Indexed(str) lastname: Indexed(str)
surnames: List[Indexed(str)] = [] surnames: List[Indexed(str)] = Field(
default=[],
props={"items-per-row": "4", "numbered": True}
)
day_of_birth: date day_of_birth: date
place_of_birth: str = "" place_of_birth: str = ""