10 lines
370 B
Python
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'),
|
|
]
|