This commit is contained in:
Ross
2021-05-06 21:51:37 +01:00
parent 2354d8970e
commit abef5f5173
3 changed files with 61 additions and 3 deletions
+2
View File
@@ -23,6 +23,7 @@ from django.views.generic import TemplateView
from . import views
from rapids import views as rapid_views
from anatomy import views as anatomy_views
from longs import views as long_views
@@ -58,6 +59,7 @@ urlpatterns = [
path("feedback/<str:question_type>/<int:pk>", views.AddQuestionNote.as_view(), name="feedback_create"),
#path("feedback/", views.AddQuestionNote.as_view(), name="feedback"),
path("feedback/answer", views.answer_suggestion_submit, name="answer_suggestion_submit"),
path("feedback/answer/confirm", views.answer_suggestion_confirm, name="answer_suggestion_confirm"),
path('api/', include(router.urls)),