From adba110722e466c78888f80951bc5db4d987401a Mon Sep 17 00:00:00 2001 From: Ihsan Ullah Date: Wed, 28 Jan 2026 14:34:29 +0500 Subject: [PATCH] added submission id and filename fileds to submission csv --- src/apps/api/views/submissions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/apps/api/views/submissions.py b/src/apps/api/views/submissions.py index 1b89ec6ae..b91ecf620 100644 --- a/src/apps/api/views/submissions.py +++ b/src/apps/api/views/submissions.py @@ -263,6 +263,8 @@ def get_renderer_context(self): # The CSV renderer will only include these fields in context["header"] # Human names for the fields context["labels"] = { + 'id': 'Submission ID', + 'filename': 'File Name', 'owner': 'Owner', 'created_when': 'Created When', 'status': 'Status',