from django.urls import path 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('alle-kommentare/', views.all_comments, name='all_comments'), path('/', views.standard_detail, name='standard_detail'), path('/history//', views.standard_detail), path('/history/', views.standard_detail, {"check_date":"today"}, name='standard_history'), path('/checkliste/', views.standard_checkliste, name='standard_checkliste'), path('/json/', views.standard_json, name='standard_json'), path('comments//', views.get_vorgabe_comments, name='get_vorgabe_comments'), path('comments//add/', views.add_vorgabe_comment, name='add_vorgabe_comment'), path('comments/delete//', views.delete_vorgabe_comment, name='delete_vorgabe_comment'), ]