Spaces:
Running
Running
File size: 420 Bytes
12b0dd7 7eb86f7 12b0dd7 7eb86f7 12b0dd7 7eb86f7 12b0dd7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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",
),
]
|