Files
backend-v1/core/apps/documents/urls.py
2026-05-06 17:57:07 +05:00

10 lines
370 B
Python

from django.urls import path
from core.apps.documents.views.contract import ValuationReportPDFView
from core.apps.documents.views.executor import ExecutorInfoView
urlpatterns = [
path('generate-contract-pdf/<int:pk>/', ValuationReportPDFView.as_view(), name='generate_contract_pdf'),
path('executor-info/', ExecutorInfoView.as_view(), name='executor_info'),
]