added sample document, added no confidential data

This commit is contained in:
2025-06-13 19:36:06 +02:00
parent 5563c9b8a8
commit 41e9490e30
6 changed files with 159 additions and 4 deletions

View File

@@ -14,4 +14,7 @@ urlpatterns = [
path("payment/", v.payment_page, name="payment_page"),
path('pdf/<uuid:document_id>/', v.pdf_view, name='pdf_view'),
path('api/validate_form_fields/', v.validate_form_fields, name='validate_form_fields'),
path('no_confidential_data/', v.no_confidential_data, name='no_confidential_data'),
path('downloads/risklet_example_document.pdf', v.download_example_pdf, name='download_example_pdf'),
]