9 lines
194 B
Python
9 lines
194 B
Python
|
from django.urls import path
|
||
|
from django.views.generic import TemplateView
|
||
|
|
||
|
app_name = "eastereggs"
|
||
|
|
||
|
urlpatterns = [
|
||
|
path("xp/", TemplateView.as_view(template_name="eastereggs/xp.html")),
|
||
|
]
|