Skip to content

Commit

Permalink
💬 newsletter import: add description for csv format
Browse files Browse the repository at this point in the history
  • Loading branch information
krmax44 authored and stefanw committed Feb 24, 2025
1 parent 320e909 commit 3ff6738
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion fragdenstaat_de/fds_newsletter/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,12 @@ def on_save(self, form, user):


class SubscriberImportForm(forms.Form):
csv_file = forms.FileField(label=_("CSV file"))
csv_file = forms.FileField(
label=_("CSV file"),
help_text=_(
"Requires an email column. Optionally, name (or first_name, last_name) can be provided."
),
)
reference = forms.CharField(label=_("Import reference label"), required=True)
email_confirmed = forms.BooleanField(
label=_("Email addresses are confirmed"), required=False
Expand Down

0 comments on commit 3ff6738

Please sign in to comment.