Templates hinzufuegen; Spiel beitreten seite stylen

This commit is contained in:
juhnsa
2025-03-12 20:16:00 +01:00
parent 46634b1e1c
commit 13cbaaa6dc
8 changed files with 69 additions and 1 deletions

9
core/play/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from django.urls import path
from . import views
app_name = 'play'
urlpatterns = [
path('lobby', views.lobby, name='lobby'),
path('join', views.join_game, name='join_game'),
]