add generation_pdf pdf , fix 500 error , install reportlab

This commit is contained in:
Shaxobff
2026-05-04 16:15:12 +05:00
parent 1ff23af8bf
commit 0c9c726756
7 changed files with 195 additions and 10 deletions

View File

@@ -20,7 +20,7 @@ urlpatterns = [
path('task/', include(
[
path('list/', task.TaskListView.as_view()),
path('<int:id>/', task.TaskDetailView.as_view()),
path('<int:pk>/', task.TaskDetailView.as_view()),
path('create/', task.TaskCreateView.as_view()),
]
)),