from django.urls import path
from .views import *

urlpatterns = [
    path('user-answers/create/', UserAnswersCreate.as_view(), name='user-answers-create'),
    path('user-status/', UserStatusUpdate.as_view(), name='user-status-update'),
    path('profit-loss/', ProfitLossView.as_view(), name='user-status-update'),
    path('qr/', QRView.as_view(), name='qr'),

    # path('profit-loss/<str:view_type>/', ProfitLossView.as_view(), name='user-status-update'),
    path('input-graph/', InputQuantityView.as_view(), name='input-graph'),

    path('input-graph-supervisor/', InputQuantityViewSupervisor.as_view(), name='input-graph-sup'),
    path('superviosr-dashboard/', SupervisorDashboardView.as_view(), name='sup-dashboard'),
    path("unexpected-event/", UnexpectedEventSubmitView.as_view(), name="unexpected-event-submit"),

]