Skip to content

Commit c0578d3

Browse files
author
John75SunCity
committed
fix: Correct template ID for bulk upload (portal_document_bulk_upload)
ISSUE: - 500 error: View 'records_management.portal_bulk_upload' not found - Controller referenced non-existent template ID FIX: - Changed template reference from 'portal_bulk_upload' to 'portal_document_bulk_upload' - Template exists in portal_document_bulk_upload.xml Files changed: - records_management/controllers/portal_document_bulk_upload.py (line 43)
1 parent 2cc56fd commit c0578d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

records_management/controllers/portal_document_bulk_upload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def portal_bulk_upload(self, **post):
4040
'page_name': 'bulk_upload',
4141
})
4242

43-
return request.render('records_management.portal_bulk_upload', values)
43+
return request.render('records_management.portal_document_bulk_upload', values)
4444

4545
def _process_container_upload(self, upload, partner, has_header):
4646
"""Process container CSV upload"""

0 commit comments

Comments
 (0)