All user comments on one page implemented, including tests

This commit is contained in:
2025-12-03 13:23:11 +01:00
parent 2c39db104e
commit a78f53f58e
4 changed files with 201 additions and 12 deletions

View File

@@ -4,6 +4,7 @@ from . import views
urlpatterns = [
path('', views.standard_list, name='standard_list'),
path('unvollstaendig/', views.incomplete_vorgaben, name='incomplete_vorgaben'),
path('meine-kommentare/', views.user_comments, name='user_comments'),
path('<str:nummer>/', views.standard_detail, name='standard_detail'),
path('<str:nummer>/history/<str:check_date>/', views.standard_detail),
path('<str:nummer>/history/', views.standard_detail, {"check_date":"today"}, name='standard_history'),