DocX-export added - not perfect yet.

This commit is contained in:
2026-02-20 15:59:51 +01:00
parent 67a967da67
commit 3faa88fcea
6 changed files with 298 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ urlpatterns = [
path('<str:nummer>/checkliste/', views.standard_checkliste, name='standard_checkliste'),
path('<str:nummer>/json/', views.standard_json, name='standard_json'),
path('<str:nummer>/xml/', views.standard_xml, name='standard_xml'),
path('<str:nummer>/docx/', views.standard_docx, name='standard_docx'),
path('comments/<int:vorgabe_id>/', views.get_vorgabe_comments, name='get_vorgabe_comments'),
path('comments/<int:vorgabe_id>/add/', views.add_vorgabe_comment, name='add_vorgabe_comment'),
path('comments/delete/<int:comment_id>/', views.delete_vorgabe_comment, name='delete_vorgabe_comment'),