from django.urls import path from . import views app_name = "dashboard" urlpatterns = [ path("", views.IndexView.as_view(), name="index"), path("my-prints/", views.MyPrintsView.as_view(), name="my_prints"), path("p//confirm//", views.ConfirmEmailView.as_view(), name="confirm"), path("p//", views.SubmissionDetailView.as_view(), name="detail"), # Routes to be added as features land (see plan.md Section 7): # path("p//status/", views.SubmissionStatusFragment.as_view(), name="status"), # path("p//resend/", views.ResendConfirmationView.as_view(), name="resend"), ]