Improving nickname display
This commit is contained in:
@@ -18,7 +18,10 @@ class Individual(EntityType):
|
||||
firstname: Indexed(str)
|
||||
middlename: 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
|
||||
place_of_birth: str = ""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user