[collector view] rudimentary implementation of list and detail view

This commit is contained in:
bronsen 2025-03-12 23:52:18 +01:00
parent d6ff246804
commit 6214610edc
4 changed files with 36 additions and 3 deletions

View file

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