Skip to content

Commit

Permalink
adjust error message on pending payments exist error
Browse files Browse the repository at this point in the history
  • Loading branch information
qch3n-at authored and luto committed Feb 24, 2024
1 parent 2f0e2a0 commit 2882744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion members/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def make_sepa_xml_for_members(modeladmin, request, queryset):
# PendingPayment.objects.all().delete()

if PendingPayment.objects.exists():
messages.error(request, "Pending Payments already exist")
messages.error(request, "Pending Payments already exist. Please check Pending Payments and convert them into actual payments or delete them as applicable.")
return

try:
Expand Down

0 comments on commit 2882744

Please sign in to comment.