From ca9aad8288047bb203d6939c7b08778b9262caca Mon Sep 17 00:00:00 2001 From: Nathan Sherburn <nathansherburn@gmail.com> Date: Fri, 4 Oct 2024 17:09:03 +1000 Subject: [PATCH] Add gift status to full exports --- donation/views/export.py | 1 + 1 file changed, 1 insertion(+) diff --git a/donation/views/export.py b/donation/views/export.py index f5b0019..6c0c89e 100644 --- a/donation/views/export.py +++ b/donation/views/export.py @@ -108,5 +108,6 @@ def download_full_spreadsheet(request): ('Share with GiveWell', 'pledge__share_with_givewell'), ('Share with GWWC', 'pledge__share_with_gwwc'), ('Share with TLYCS', 'pledge__share_with_tlycs'), + ('Gift', 'pledge__is_gift'), ] return download_spreadsheet(request, extra_fields)