bloonsworld/app/bloonsa_game/urls.py

14 lines
432 B
Python

from django.urls import path, include
from bloonsa_game.views import IndexView, TermsView, GameView, WIPView
app_name = "bloonsa_game"
urlpatterns = [
path("", IndexView.as_view(), name="index"),
path("game", GameView.as_view(), name="game"),
path("game/<int:pk>", GameView.as_view(), name="gameSelect"),
path("terms", TermsView.as_view(), name="terms"),
path("contact", WIPView.as_view(), name="contact"),
]