diff --git a/ezgg_website/components/member_card.py b/ezgg_website/components/member_card.py index 1f30d71..60f9a38 100644 --- a/ezgg_website/components/member_card.py +++ b/ezgg_website/components/member_card.py @@ -13,7 +13,8 @@ class MemberCard(rio.Component): rio.Image(self.info.picture_path, height=9, margin_bottom=1.3, margin_top=0.8), rio.Text(self.info.name, margin_bottom=0.4, style=rio.TextStyle(font_weight="bold"), justify="center"), rio.Text(self.info.position, margin_bottom=0.4, style=rio.TextStyle(italic=True), justify="center"), - rio.Text(f"Mitglied seit {self.info.entry_date}", style=rio.TextStyle(italic=True), margin_bottom=0.4, justify="center"), + rio.Text(f"Mitglied seit", style=rio.TextStyle(italic=True), margin_bottom=0.4, justify="center"), + rio.Text(f"{self.info.entry_date}", style=rio.TextStyle(italic=True, font_size=0.9), margin_bottom=0.4, justify="center"), social_links_grid ) diff --git a/ezgg_website/services/database_service.py b/ezgg_website/services/database_service.py index 3179916..8410075 100644 --- a/ezgg_website/services/database_service.py +++ b/ezgg_website/services/database_service.py @@ -48,7 +48,7 @@ class DatabaseService: ), MemberInfo( picture_path=from_root("ezgg_website/assets/member_pictures/tim.png"), name="Tim \"Matschwicht\" B.", - position="Mitglied", + position="Gründungsmitglied", entry_date="29.10.2023", socials=[ SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/profiles/76561198247114792"), @@ -56,7 +56,7 @@ class DatabaseService: ), MemberInfo( picture_path=from_root("ezgg_website/assets/member_pictures/dennis.png"), name="Dennis \"Goodman\" P.", - position="Mitglied", + position="Gründungsmitglied", entry_date="29.10.2023", socials=[ SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/profiles/76561198160425987"), @@ -64,7 +64,7 @@ class DatabaseService: ), MemberInfo( picture_path=from_root("ezgg_website/assets/member_pictures/tom.png"), name="Tom \"Tcprod\" C.", - position="Mitglied", + position="Gründungsmitglied", entry_date="29.10.2023", socials=[ SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/profiles/76561198118936378"), @@ -72,7 +72,7 @@ class DatabaseService: ), MemberInfo( picture_path=from_root("ezgg_website/assets/member_pictures/chris.png"), name="Chris \"Meliodas\" K.", - position="Mitglied", + position="Gründungsmitglied", entry_date="29.10.2023", socials=[ SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/profiles/76561198299462425"),