12 lines
335 B
Python
12 lines
335 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "collector"
|
|
|
|
urlpatterns = [
|
|
path("", views.IndexView.as_view(), name="list"),
|
|
path("recorded/<int:pk>/", views.DetailView.as_view(), name="detail"),
|
|
path("enter/", views.enter, name="enter"),
|
|
path("all/", views.TeileListView.as_view(), name="list-all"),
|
|
]
|