Skip to content

Commit

Permalink
Do not filter out drop-outs
Browse files Browse the repository at this point in the history
  • Loading branch information
txels committed Apr 18, 2024
1 parent 4268caf commit 355df1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shipanaro/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def csv_export(request):
writer = csv.writer(response)
writer.writerow(["First Name", "Last Name", "Email Address", "ID", "Active"])

for member in Membership.objects.filter(drop_out=False):
for member in Membership.objects.all():
writer.writerow(
[
member.user.first_name,
Expand Down

0 comments on commit 355df1f

Please sign in to comment.