django-exalted/exalted/urls.py
2020-04-13 00:31:12 +01:00

10 lines
288 B
Python

from django.contrib import admin
from django.urls import path
from app.views import *
urlpatterns = [
path('admin/', admin.site.urls),
path('', HomePageView.as_view(), name="homePageView"),
path('character/<pk>', CharacterDetailView.as_view(), name="characterDetailView"),
]