from django.urls import path from . import views app_name = 'profiles' urlpatterns = [ # L'URL VULNÉRABLE path( 'vulnerable//', views.VulnerableProfileView.as_view(), name='vulnerable_detail' ), # L'URL SÉCURISÉE path( 'secure//', views.SecureProfileView.as_view(), name='secure_detail' ), ]