Skip to content

Commit

Permalink
chore(payments): remove customer filtering in admin
Browse files Browse the repository at this point in the history
It is too long and betetr to use search instead.
  • Loading branch information
nijel committed Nov 20, 2024
1 parent 5a7e47e commit 3edab69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weblate_web/payments/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class PaymentAdmin(admin.ModelAdmin):
"end",
"created",
)
list_filter = ("state", "backend", "customer__name", "customer__origin")
list_filter = ("state", "backend")
search_fields = (
"description",
"customer__name",
Expand Down

0 comments on commit 3edab69

Please sign in to comment.