Files
webarchive/stat/user_statistics/stat_management/urls.py
Raphael Rouiller aa54287126 Base
2024-07-08 14:06:52 +02:00

8 lines
352 B
Python

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'),
]