from django.urls import path from dpp import views app_name = 'dpp' urlpatterns = [ path("/", views.ProofView.as_view(), name="proof"), ]