This commit is contained in:
Ross
2024-10-07 19:38:44 +01:00
parent 2e80a4ee0a
commit 8964a5598f
6 changed files with 107 additions and 2 deletions
+9
View File
@@ -23,6 +23,15 @@ urlpatterns = [
path(
"entries/replace_questions", views.replace_questions, name="replace_questions"
),
path(
"entries/questions", views.questions, name="questions"
),
path(
"entries/questions_diff", views.questions_diff, name="questions_diff"
),
path(
"entries/entries_by_question", views.entries_by_question, name="entries_by_question"
),
path(
"entries/<int:pk>/update", views.EntryUpdateView.as_view(), name="entry_update"
),