remove last_paid column to not search database for unexisting entries

This commit is contained in:
Ojakoo
2022-12-21 18:13:54 +02:00
parent c1a1f6e534
commit f7de9e32d3
+1 -1
View File
@@ -135,7 +135,7 @@ def import_csv(request, *args, **kwargs):
member_table = MemberTable(
result.members,
request=request,
exclude=["id", "options"],
exclude=["id", "options", "last_paid"],
attrs={"class": "table table-bordered table-hover"},
)