Vouchers: Fix field label inconsistency (Z#23222887) (#5902)

The field Voucher.price_mode is sometimes called "Price mode" and
sometimes "Price effect" in the UI, which is inconsistent. I think
"price effect" is a little clearer, but I don't really care as long as
it is consistent.
This commit is contained in:
Raphael Michel
2026-02-17 10:16:12 +01:00
committed by GitHub
parent cb464ad597
commit 8a7f54795e
3 changed files with 5 additions and 5 deletions

View File

@@ -239,7 +239,7 @@ class Voucher(LoggedModel):
)
)
price_mode = models.CharField(
verbose_name=_("Price mode"),
verbose_name=_("Price effect"),
max_length=100,
choices=PRICE_MODES,
default='none'