django-exalted/exalted/urls.py

10 lines
288 B
Python
Raw Normal View History

from django.contrib import admin
from django.urls import path
2020-04-13 00:31:12 +01:00
from app.views import *
urlpatterns = [
path('admin/', admin.site.urls),
2020-04-13 00:31:12 +01:00
path('', HomePageView.as_view(), name="homePageView"),
path('character/<pk>', CharacterDetailView.as_view(), name="characterDetailView"),
]