Optout URL in funding admin export.
authorRadek Czajka <rczajka@rczajka.pl>
Tue, 27 Apr 2021 08:48:39 +0000 (10:48 +0200)
committerRadek Czajka <rczajka@rczajka.pl>
Tue, 27 Apr 2021 08:48:39 +0000 (10:48 +0200)
src/funding/admin.py
src/funding/models.py

index 3e981d8..27109e6 100644 (file)
@@ -62,7 +62,12 @@ class FundingAdmin(admin.ModelAdmin):
     list_display = ['payed_at', 'offer', 'amount', 'name', 'email', 'perk_names']
     search_fields = ['name', 'email', 'offer__title', 'offer__author']
     list_filter = [PayedFilter, 'offer', PerksFilter]
-    actions = [export_as_csv_action()]
+    actions = [export_as_csv_action(
+        fields=[
+            'id', 'offer', 'name', 'email', 'amount', 'payed_at',
+            'notifications', 'notify_key', 'wl_optout_url'
+        ]
+    )]
 
 
 class SpentAdmin(admin.ModelAdmin):
index 9907cd0..289ec33 100644 (file)
@@ -304,6 +304,9 @@ class Funding(models.Model):
                 'key': self.notify_key,
             }))
 
+    def wl_optout_url(self):
+        return 'https://wolnelektury.pl' + self.get_disable_notifications_url()
+
     def save(self, *args, **kwargs):
         if self.email and not self.notify_key:
             self.notify_key = get_random_hash(self.email)