diff --git a/ezgg_website/assets/news_10_08_24.md b/ezgg_website/assets/news_10_08_24.md new file mode 100644 index 0000000..05e968b --- /dev/null +++ b/ezgg_website/assets/news_10_08_24.md @@ -0,0 +1,5 @@ +Die EZ GG e.V. freut sich **Jens** und **Stefan** in ihren Reihen begrüßen zu dürfen. + +Unsere neuen Mitglieder, die unter den Nicknames **dusker** und **lenny** beitreten, beenden beide ihre Probezeit am 09.11.24. + +Damit hat die EZ GG e.V. nun die zweistellige MItgliederzahl geknackt. 🥳 🥳 🥳 \ No newline at end of file diff --git a/ezgg_website/pages/home.py b/ezgg_website/pages/home.py index d79a0a8..f420c95 100644 --- a/ezgg_website/pages/home.py +++ b/ezgg_website/pages/home.py @@ -31,6 +31,11 @@ class Home(rio.Component): margin_bottom=1, margin_right=1 ), + comps.build_news_post( + header="Doppelte Neuaufnahme", + article_text_path_or_text=from_root("ezgg_website/assets/news_10_08_24.md"), + date="10.08.2024" + ), comps.build_news_post( header="Weiterer Neuzugang im Verein!", article_text_path_or_text=from_root("ezgg_website/assets/news_23_07_24.md"), diff --git a/ezgg_website/services/database_service.py b/ezgg_website/services/database_service.py index cc15abe..ff420ed 100644 --- a/ezgg_website/services/database_service.py +++ b/ezgg_website/services/database_service.py @@ -92,6 +92,18 @@ class DatabaseService: position="Mitglied in Probezeit", entry_date="20.07.2024", socials=[SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/profiles/76561198033110015")] + ), MemberInfo( + picture_path=from_root("ezgg_website/assets/member_pictures/anon.png"), + name="Jens \"dusker\" G.", + position="Mitglied in Probezeit", + entry_date="09.08.2024", + socials=[SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/profiles/76561197960863240")] + ), MemberInfo( + picture_path=from_root("ezgg_website/assets/member_pictures/anon.png"), + name="Stefan \"lenny\" R.", + position="Mitglied in Probezeit", + entry_date="09.08.2024", + socials=[SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/profiles/76561197973187407")] ) ] @@ -123,5 +135,8 @@ class DatabaseService: # BL 42 rio.URL("https://verwaltung.ezgg-ev.de/adm_program/modules/photos/photo_show.php?photo_uuid=235bf57f-c65c-4b5f-8029-061775eeec45&photo_nr=1"), - rio.URL("https://verwaltung.ezgg-ev.de/adm_program/modules/photos/photo_show.php?photo_uuid=235bf57f-c65c-4b5f-8029-061775eeec45&photo_nr=2") + rio.URL("https://verwaltung.ezgg-ev.de/adm_program/modules/photos/photo_show.php?photo_uuid=235bf57f-c65c-4b5f-8029-061775eeec45&photo_nr=2"), + + # Fieste del Krümel + rio.URL("https://verwaltung.ezgg-ev.de/adm_program/modules/photos/photo_show.php?photo_uuid=5177ce6f-f8c6-49a2-9bb0-4e9f606ecd2b&photo_nr=1") ]