Fügt eine neue Seite hinzu, auf der Headcoaches Statistiken für ihre Teams einsehen können. Die Statistikseite umfasst: - W-L-Bilanz, Siegquote (PCT) und aktuelle Serie - Balkendiagramm für erzielte und zugelassene Runs (RS vs. RA) - "Luck-O-Meter" zum Vergleich der realen und pythagoreischen Siegquote - Inning-Heatmap zur Anzeige der erzielten Runs pro Inning Die Seite ist über einen neuen Button auf dem Dashboard für jedes vom Headcoach trainierte Team erreichbar.
29 lines
1.0 KiB
Python
29 lines
1.0 KiB
Python
"""
|
|
URL configuration for baseball_organisator project.
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
https://docs.djangoproject.com/en/5.2/topics/http/urls/
|
|
Examples:
|
|
Function views
|
|
1. Add an import: from my_app import views
|
|
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
|
Class-based views
|
|
1. Add an import: from other_app.views import Home
|
|
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
|
Including another URLconf
|
|
1. Import the include() function: from django.urls import include, path
|
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
|
"""
|
|
from django.contrib import admin
|
|
from django.urls import path, include
|
|
import baseball_organisator.admin
|
|
|
|
urlpatterns = [
|
|
path('admin/', admin.site.urls),
|
|
path('accounts/', include('accounts.urls')),
|
|
path('clubs/', include('clubs.urls')),
|
|
path('calendars/', include('calendars.urls')),
|
|
path('statistics/', include('team_stats.urls')),
|
|
path('', include('dashboard.urls')),
|
|
]
|