ajouté dark mode et changer l'affichage des équipes dans les match. Changé les couleurs pour ressembler plus au couleur de l'udes

This commit is contained in:
cedrick2711
2026-07-14 23:34:56 -04:00
parent b19d5db8db
commit 5a090c0872
20 changed files with 632 additions and 107 deletions
+2 -2
View File
@@ -73,7 +73,7 @@ def api_events():
events.append({
'id': f'match_{match.id}',
'title': match.title + ' (' + participants_str + ')',
'title': match.title,
'date': match.date.strftime('%Y-%m-%d'),
'type': 'match',
'color': match_color,
@@ -181,7 +181,7 @@ def api_events_for_tryout(tryout_id):
events.append({
'id': f'match_{match.id}',
'title': match.title + ' (' + participants_str + ')',
'title': match.title,
'date': match.date.strftime('%Y-%m-%d'),
'type': 'match',
'color': match_color,