#7 Dodati su export/import za template, isto tako template za document

This commit is contained in:
2025-02-13 17:55:46 +01:00
parent 54ef0248f5
commit f41997fd59
12 changed files with 229 additions and 6 deletions

View File

@@ -10,4 +10,5 @@ urlpatterns = [
path('thankyou/', v.thankyou, name='thankyou'),
# url document/ recieves a parameter named 'uuid' and passes it to the view
path('document/<uuid:document_id>/', v.document, name='document'),
path('preview/<str:name>/', v.template_preview, name='template_preview'),
]