Add Radeln ohne Alter ride-coordination demo (Django + HTMX + Leaflet)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
steffen1971 2026-06-20 21:20:17 +02:00
commit 5d967c68b5
40 changed files with 2040 additions and 0 deletions

20
rides/urls.py Normal file
View file

@ -0,0 +1,20 @@
from django.urls import path
from . import views
urlpatterns = [
path("", views.home, name="home"),
path("demo-login/<int:user_id>/", views.demo_login, name="demo_login"),
path("logout/", views.logout_view, name="logout"),
path("dashboard/", views.dashboard, name="dashboard"),
path("fahrten/neu/", views.ride_create, name="ride_create"),
path("fahrten/<int:pk>/", views.ride_detail, name="ride_detail"),
path("fahrten/<int:pk>/uebernehmen/", views.ride_claim, name="ride_claim"),
path("fahrten/<int:pk>/erledigt/", views.ride_done, name="ride_done"),
path("fahrten/<int:pk>/absagen/", views.ride_cancel, name="ride_cancel"),
path("verfuegbarkeit/neu/", views.availability_add, name="availability_add"),
path("karte/", views.map_view, name="map"),
path("karte/fahrten.geojson", views.rides_geojson, name="rides_geojson"),
path("einzugsgebiet/", views.coverage, name="coverage"),
path("statistik/", views.stats, name="stats"),
]