1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2024-12-26 05:42:20 +00:00
plateforme-corres2math/apps/eastereggs/urls.py
2020-09-22 21:20:20 +02:00

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")),
]