mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-14 10:08:28 +02:00
Create a page to edit checklist name and tasks + another page for deletion
This commit is contained in:
@ -93,6 +93,16 @@ urlpatterns = [
|
||||
staff.attachment_del,
|
||||
name="attachment_del",
|
||||
),
|
||||
path(
|
||||
"tickets/<int:ticket_id>/checklists/<int:checklist_id>/",
|
||||
staff.edit_ticket_checklist,
|
||||
name="edit_ticket_checklist"
|
||||
),
|
||||
path(
|
||||
"tickets/<int:ticket_id>/checklists/<int:checklist_id>/delete/",
|
||||
staff.delete_ticket_checklist,
|
||||
name="delete_ticket_checklist"
|
||||
),
|
||||
re_path(r"^raw/(?P<type>\w+)/$", staff.raw_details, name="raw"),
|
||||
path("rss/", staff.rss_list, name="rss_index"),
|
||||
path("reports/", staff.report_index, name="report_index"),
|
||||
|
Reference in New Issue
Block a user