From 6c7613ba2f3968d21b2a6fa9ecbf3d5d410b6f52 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Sat, 4 May 2019 01:03:43 +1000 Subject: [PATCH] Fix form title --- InvenTree/part/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/InvenTree/part/views.py b/InvenTree/part/views.py index bdc3147e9b..27d52dcdb7 100644 --- a/InvenTree/part/views.py +++ b/InvenTree/part/views.py @@ -119,6 +119,7 @@ class PartAttachmentDelete(AjaxDeleteView): """ View for deleting a PartAttachment """ model = PartAttachment + ajax_form_title = "Delete Part Attachment" ajax_template_name = "part/attachment_delete.html" context_object_name = "attachment"