MOAR
This commit is contained in:
parent
31937ce791
commit
1da9798910
@ -17,7 +17,7 @@ class MemberCard(rio.Component):
|
|||||||
social_links_grid
|
social_links_grid
|
||||||
)
|
)
|
||||||
|
|
||||||
for i, social_link in enumerate(self.info.socials):
|
for i, social_link in enumerate(sorted(self.info.socials, key=lambda s: s.platform.value)):
|
||||||
social_links_grid.add(
|
social_links_grid.add(
|
||||||
rio.Link(
|
rio.Link(
|
||||||
rio.Icon(SOCIAL_PLATFORM_ICON_MAP[social_link.platform], height=1.3, width=1.3, fill="primary"),
|
rio.Icon(SOCIAL_PLATFORM_ICON_MAP[social_link.platform], height=1.3, width=1.3, fill="primary"),
|
||||||
|
|||||||
@ -39,28 +39,44 @@ class DatabaseService:
|
|||||||
position="Schatzmeisterin",
|
position="Schatzmeisterin",
|
||||||
entry_date="29.10.2023",
|
entry_date="29.10.2023",
|
||||||
socials=[
|
socials=[
|
||||||
SocialLink(SocialPlatform.TWITCH, "https://twitch.tv/jessysixx88/home")
|
SocialLink(SocialPlatform.MAIL, "mailto://jessysixx@ezgg-ev.de"),
|
||||||
|
SocialLink(SocialPlatform.TWITCH, "https://twitch.tv/jessysixx88/home"),
|
||||||
|
SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/id/JessySixx"),
|
||||||
|
SocialLink(SocialPlatform.INSTAGRAM, "https://www.instagram.com/jessykrumel/"),
|
||||||
|
SocialLink(SocialPlatform.FACEBOOK, "https://www.facebook.com/krumelcore.untherapierbar")
|
||||||
]
|
]
|
||||||
), MemberInfo(
|
), MemberInfo(
|
||||||
picture_path=from_root("ezgg_website/assets/member_pictures/tim.png"),
|
picture_path=from_root("ezgg_website/assets/member_pictures/tim.png"),
|
||||||
name="Tim \"Matschwicht\" B.",
|
name="Tim \"Matschwicht\" B.",
|
||||||
position="Mitglied",
|
position="Mitglied",
|
||||||
entry_date="29.10.2023"
|
entry_date="29.10.2023",
|
||||||
|
socials=[
|
||||||
|
SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/profiles/76561198247114792"),
|
||||||
|
]
|
||||||
), MemberInfo(
|
), MemberInfo(
|
||||||
picture_path=from_root("ezgg_website/assets/member_pictures/dennis.png"),
|
picture_path=from_root("ezgg_website/assets/member_pictures/dennis.png"),
|
||||||
name="Dennis \"Goodman\" P.",
|
name="Dennis \"Goodman\" P.",
|
||||||
position="Mitglied",
|
position="Mitglied",
|
||||||
entry_date="29.10.2023"
|
entry_date="29.10.2023",
|
||||||
|
socials=[
|
||||||
|
SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/profiles/76561198160425987"),
|
||||||
|
]
|
||||||
), MemberInfo(
|
), MemberInfo(
|
||||||
picture_path=from_root("ezgg_website/assets/member_pictures/tom.png"),
|
picture_path=from_root("ezgg_website/assets/member_pictures/tom.png"),
|
||||||
name="Tom \"Tcprod\" C.",
|
name="Tom \"Tcprod\" C.",
|
||||||
position="Mitglied",
|
position="Mitglied",
|
||||||
entry_date="29.10.2023"
|
entry_date="29.10.2023",
|
||||||
|
socials=[
|
||||||
|
SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/profiles/76561198118936378"),
|
||||||
|
]
|
||||||
), MemberInfo(
|
), MemberInfo(
|
||||||
picture_path=from_root("ezgg_website/assets/member_pictures/chris.png"),
|
picture_path=from_root("ezgg_website/assets/member_pictures/chris.png"),
|
||||||
name="Chris \"Meliodas\" K.",
|
name="Chris \"Meliodas\" K.",
|
||||||
position="Mitglied",
|
position="Mitglied",
|
||||||
entry_date="29.10.2023"
|
entry_date="29.10.2023",
|
||||||
|
socials=[
|
||||||
|
SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/profiles/76561198299462425"),
|
||||||
|
]
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user