"""
Dashboard URL Configuration
"""

from django.urls import path

app_name = "dashboard"

from .views import *

urlpatterns = [
    path('', DashboardView.as_view(), name='index'),
    path('darija-ai', DarijaAIPresentationView.as_view(), name='darija-ai'),
    path('poc_snrt', POCPresentationView.as_view(), name="poc_snrt"),
    path('poc_snrt_fr', POCPresentationViewNewsFR.as_view(), name="poc_snrt_fr"),
    path('adscan', AdScanPresentationView.as_view(), name='adscan'),
    path('CDN-Optimization', CdnOptimizationPresentationView.as_view(), name='cdn-optimization'),
    path('report/<str:show_name>/', ReportView.as_view(), name='report'),
    path('faces/<str:date>',LoadFaces.as_view(),name='faces'),
    path('music-removal', MusicRemovalView.as_view(), name='music-removal'),
    
    # new urls
    path('poc', POCPresentationView.as_view(), name="poc"),
    path('Face-and-Speech-Recognition', POCPresentationView.as_view(), name="Face-and-Speech-Recognition"),
    # path('poc_ar_1', POCArabicOnePresentationView.as_view(), name="poc_ar_1"),
    path('Detection-and-Transcript-Result_Arabic_1', POCArabicOnePresentationView.as_view(), name="Detection-and-Transcript-Result_Arabic_1"),
    # path('poc_ar_2', POCArabicTwoPresentationView.as_view(), name="poc_ar_2"),
    path('Detection-and-Transcript-Result_Arabic_2', POCArabicTwoPresentationView.as_view(), name="Detection-and-Transcript-Result_Arabic_2"),
    # path('poc_fr_1', POCFrenchOnePresentationView.as_view(), name="poc_fr_1"),
    path('Detection-and-Transcript-Result_French_1', POCFrenchOnePresentationView.as_view(), name="Detection-and-Transcript-Result_French_1"),

]
