from django.urls import path
from . import views

urlpatterns = [
    # FAQ
    path("faq_category_mobile/", views.FAQCategoryListMobileView.as_view()),
    path("faq_category_dashboard/", views.FAQCategoryListDashboardView.as_view()),
    path(
        "faq_category_dashboard/<int:id>",
        views.FAQCategoryDetailDashboardView.as_view(),
    ),
    path(
        "faq_categorylanguage_dashboard/",
        views.FAQCategoryLanguageListDashboardView.as_view(),
    ),
    path(
        "faq_categorylanguage_dashboard/<int:id>",
        views.FAQCategoryLanguageDetailDashboardView.as_view(),
    ),
    
    #FAQ
    path("faq_mobile/", views.FAQListMobileView.as_view()),
    path("faq_dashboard/", views.FAQListDashboardView.as_view()),
    path("faq_dashboard/<int:id>", views.FAQDetailDashboardView.as_view()),
    path("faqlanguage_dashboard/", views.FAQLanguageListDashboardView.as_view()),
    path(
        "faqlanguage_dashboard/<int:id>", views.FAQLanguageDetailDashboardView.as_view()
    ),

    #Information Type
    path("information_type_mobile/", views.InformationTypeListMobileView.as_view()),
    path("information_type_dashboard/", views.InformationTypeListDashboardView.as_view()),
    path("information_type_dashboard/<int:id>/", views.InformationTypeDetailDashboardView.as_view()),
    
    #Information
    
    path("information_dashboard/", views.InformationListDashboardView.as_view()),
    path("information_dashboard/<int:id>/", views.InformationDetailDashboardView.as_view()),
    path("information_language_dashboard/",views.InformationLanguageListDashboardView.as_view(),),
    path("information_language_dashboard/<int:id>",views.InformationLanguageDetailDashboardView.as_view(),),

    #Section
    path("section_dashboard/", views.SectionListDashboardView.as_view()),
    path("section_dashboard/<int:id>", views.SectionDetailDashboardView.as_view()),
    path("sectionlanguage_dashboard/",views.SectionLanguageListDashboardView.as_view(),),
    path("sectionlanguage_dashboard/<int:id>",views.SectionLanguageDetailDashboardView.as_view(),),

    #Content
    path("content_dashboard/", views.ContentListDashboardView.as_view()),
    path("content_dashboard/<int:id>", views.ContentDetailDashboardView.as_view()),
    path("content_language_dashboard/",views.ContentLanguageListDashboardView.as_view(),),
    path("content_language_dashboard/<int:id>",views.ContentLanguageDetailDashboardView.as_view(),),
    
]