update rio, add fips

This commit is contained in:
David Rodenkirchen 2024-07-23 22:38:33 +02:00
parent eade7ed48b
commit 7f8c5697fa
9 changed files with 22 additions and 8 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 277 KiB

View File

@ -1,3 +1,3 @@
Die EZ GG e.v. freut sich **Imanuel** in ihren Reihen begrüßen zu dürfen. Die EZ GG e.V. freut sich **Imanuel** in ihren Reihen begrüßen zu dürfen.
Unser neues Mitglied das unter dem Nickname **ImiKoD** beitritt wird seine Probezeit am 18.10.24 beenden. Unser neues Mitglied, das unter dem Nickname **ImiKoD** beitritt, wird seine Probezeit am 18.10.24 beenden.

View File

@ -0,0 +1,3 @@
Die EZ GG e.V. freut sich **Jan** in ihren Reihen begrüßen zu dürfen.
Unser neues Mitglied, das unter dem Nickname **Medusaman** beitritt, wird seine Probezeit am 20.10.24 beenden.

View File

@ -46,7 +46,7 @@ class Header(rio.Component):
Ticker( Ticker(
texts=[ texts=[
"Die EZ GG wurde in einer schlecht beleuchteten Kellerbar gegründet", "Die EZ GG wurde in einer schlecht beleuchteten Kellerbar gegründet",
"Aktuelle hat die EZ GG e.V. acht Mitglieder", "Aktuelle hat die EZ GG e.V. neun Mitglieder",
"Bist du auch ein Gamer? Dann tritt uns doch bei!", "Bist du auch ein Gamer? Dann tritt uns doch bei!",
"Auch Wasser wird zum edlen Tropfen, mischt man es mit Malz und Hopfen." "Auch Wasser wird zum edlen Tropfen, mischt man es mit Malz und Hopfen."
], ],

View File

@ -11,9 +11,9 @@ class MemberCard(rio.Component):
content = rio.Column( content = rio.Column(
rio.Image(self.info.picture_path, height=9, margin_bottom=1.3, margin_top=0.8), 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")), 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)), 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), rio.Text(f"Mitglied seit {self.info.entry_date}", style=rio.TextStyle(italic=True), margin_bottom=0.4, justify="center"),
social_links_grid social_links_grid
) )

View File

@ -31,6 +31,11 @@ class Home(rio.Component):
margin_bottom=1, margin_bottom=1,
margin_right=1 margin_right=1
), ),
comps.build_news_post(
header="Weiterer Neuzugang im Verein!",
article_text_path_or_text=from_root("ezgg_website/assets/news_23_07_24.md"),
date="23.07.2024"
),
comps.build_news_post( comps.build_news_post(
header="Neuzugang im Verein!", header="Neuzugang im Verein!",
article_text_path_or_text=from_root("ezgg_website/assets/news_19_07_24.md"), article_text_path_or_text=from_root("ezgg_website/assets/news_19_07_24.md"),

View File

@ -86,6 +86,12 @@ class DatabaseService:
SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/id/ImiKoD/"), SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/id/ImiKoD/"),
SocialLink(SocialPlatform.FACEBOOK, "https://www.facebook.com/imanuel.blocher") SocialLink(SocialPlatform.FACEBOOK, "https://www.facebook.com/imanuel.blocher")
] ]
), MemberInfo(
picture_path=from_root("ezgg_website/assets/member_pictures/fips.png"),
name="Jan Phillip \"Medusaman\" N.",
position="Mitglied in Probezeit",
entry_date="20.07.2024",
socials=[SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/profiles/76561198033110015")]
) )
] ]

Binary file not shown.

View File

@ -1,3 +1,3 @@
[app] [app]
app_type = "website" # This is either "website" or "app" app-type = "website"
main_module = "ezgg_website" # The name of your Python module main-module = "ezgg_website"