Spaces:
Running
Running
File size: 254 Bytes
12b0dd7 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from django.urls import path
from gerar_documento.views import ResumoSimplesCursorCompletoView
urlpatterns = [
path(
"gerar-documento",
ResumoSimplesCursorCompletoView.as_view(),
name="summary-cursor-completo-pdf",
),
]
|