Spaces:
Running
Running
| from django.urls import path | |
| from gerar_documento.views import ( | |
| GerarDocumentoView, | |
| GerarDocumentoComPDFProprioView, | |
| GerarEmentaComPDFProprioView, | |
| GerarEmentaView, | |
| ) | |
| 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", | |
| ), | |
| path( | |
| "gerar-ementa", | |
| GerarEmentaView.as_view(), | |
| name="generate-ementa", | |
| ), | |
| path( | |
| "gerar-ementa/pdf", | |
| GerarEmentaComPDFProprioView.as_view(), | |
| name="generate-ementa-with-own-pdf", | |
| ), | |
| ] | |