from django.urls import path, include from . import views app_name = "rapids" urlpatterns = [ # path('', views.question_list, name='question_list'), path("", views.index, name="index"), path("author//", views.author_detail, name="author_detail"), path("author/", views.author_list, name="author_list"), #path("unchecked/", views.unchecked_list, name="unchecked_list"), #path("verified//", views.verified_detail, name="verified_detail"), path("/", views.rapid_detail, name="rapid_detail"), path("/split", views.rapid_split, name="rapid_split"), path("/clone", views.RapidClone.as_view(), name="rapid_clone"), #path("verified/", views.verified, name="verified"), #path("all_questions/", views.all_questions, name="all_questions"), path("/scrap", views.rapid_scrap, name="rapid_scrap"), path("create/", views.RapidCreate.as_view(), name="rapid_create"), path("create/defaults", views.RapidCreationDefaultView.as_view(), name="rapid_create_defaults"), path("view/", views.RapidView.as_view(), name="rapid_view"), path("region/create/", views.create_region, name="create_region"), path("region/ajax/get_region_id", views.get_region_id, name="get_region_id"), path("abnormality/create/", views.create_abnormality, name="create_abnormality"), path("abnormality/ajax/get_abnormality_id", views.get_abnormality_id, name="get_abnormality_id"), path("examination/create/", views.create_examination, name="create_examination"), path("examination/ajax/get_examination_id", views.get_examination_id, name="get_examination_id"), path( "/update", views.RapidUpdate.as_view(), name="rapid_update", ), path("/add_note", views.AddNote.as_view(), name="rapid_add_note"), ]