from django.urls import path from .views import GameHistoryView, AddGameHistoryView, StatsView urlpatterns = [ path('game-history//', GameHistoryView.as_view(), name='game_history'), path('game-history/', AddGameHistoryView.as_view(), name='add_game_history'), path('stats//', StatsView.as_view(), name='stats'), ]