mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2024-12-26 19:02:21 +00:00
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")),
|
||
|
]
|