Spaces:
Running
Running
from django.urls import path | |
from gerar_documento.views import ( | |
GerarDocumentoView, | |
GerarDocumentoComPDFProprioView, | |
) | |
urlpatterns = [ | |
path( | |
"gerar-documento", | |
GerarDocumentoView.as_view(), | |
name="summary-cursor-completo-pdf", | |
), | |
path( | |
"gerar-documento/pdf", | |
GerarDocumentoComPDFProprioView.as_view(), | |
name="generate-document-with-own-pdf", | |
), | |
] | |