[collector view] rudimentary implementation of list and detail view
This commit is contained in:
parent
d6ff246804
commit
6214610edc
4 changed files with 36 additions and 3 deletions
|
|
@ -2,6 +2,9 @@ from django.urls import path
|
|||
|
||||
from . import views
|
||||
|
||||
app_name = "collector"
|
||||
|
||||
urlpatterns = [
|
||||
path("", views.index, name="index"),
|
||||
path("recorded/<int:teil_id>/", views.detail, name="detail"),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue