feat: front-end overhaul. added search, editing, event view, validation

This commit is contained in:
2025-05-19 04:36:28 +02:00
parent 82936633f1
commit ace54fb4ef
20 changed files with 490 additions and 89 deletions

View File

@@ -156,6 +156,8 @@ namespace WebApp.Endpoints
List<EventSummaryDto> SearchResults = [];
List<Event> AllEvents = await dbContext.Events.ToListAsync();
AllEvents.Reverse(); // aby wyświetlało od najnowszych wydarzeń
foreach(Event e in AllEvents)
{