teilchensammler/collector/urls.py

13 lines
326 B
Python
Raw Normal View History

from django.urls import path
from . import views
app_name = "collector"
urlpatterns = [
path("", views.IndexView.as_view(), name="index"),
path("recorded/<int:pk>/", views.DetailView.as_view(), name="detail"),
path("enter/", views.enter, name="enter"),
path("all/", views.ListView.as_view(), name="all"),
]