from django.urls import path
from . import views

urlpatterns = [
    #Medical Profile
    path("medical_profile_mobile/", views.MedicalProfileListMobileView.as_view()),
    
    path(
        "medical_profile_mobile/<int:parentId>",
        views.MedicalProfileDetailMobileView.as_view(),
    ),

    #Financial Profile
    path(
        "financial_profile_mobile/",
        views.FinancialProfileListMobileView.as_view(),
    ),
    path(
        "financial_profile_mobile/<int:parentId>",
        views.FinancialProfileDetailMobileView.as_view(),
    ),
    path(
        "financial_profile_dashboard/",
        views.FinancialProfileListDashboardView.as_view(),
    ),
    path(
        "financial_profile_dashboard/<int:id>",
        views.FinancialProfileDetailDashboardView.as_view(),
    ),
]