change label from "Item and Variation" to "Product"

This commit is contained in:
Lukas Bockstaller
2025-12-16 12:52:08 +01:00
parent 7c21aed1a7
commit 8fa492d82f

View File

@@ -109,7 +109,7 @@ class WaitingListEntryEditForm(I18nModelForm):
choices.append(('{}'.format(item.pk), str(item) if item.active else mark_safe(
f'<strike class="text-muted">{escape(item)}</strike>')))
self.fields['itemvar'].label = _("Item and Variation")
self.fields['itemvar'].label = _("Product")
self.fields['itemvar'].required = True
self.fields['itemvar'].widget = Select2ItemVarQuota(
attrs={