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/", GameView.as_view(), name="gameSelect"), path("terms", TermsView.as_view(), name="terms"), path("contact", WIPView.as_view(), name="contact"), ]