This commit is contained in:
Raphael Rouiller
2024-07-08 14:06:52 +02:00
commit aa54287126
96 changed files with 2718 additions and 0 deletions

View File

@ -0,0 +1,8 @@
from django.urls import path
from .views import GameHistoryView, AddGameHistoryView, StatsView
urlpatterns = [
path('game-history/<str:username>/', GameHistoryView.as_view(), name='game_history'),
path('game-history/', AddGameHistoryView.as_view(), name='add_game_history'),
path('stats/<str:username>/', StatsView.as_view(), name='stats'),
]