mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 21:52:21 +01:00
10 lines
136 B
Python
10 lines
136 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
app_name = 'stats'
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.stats, name='stats'),
|
|
]
|