From 2233de56608489f88ca71bf14c4d76a164028b91 Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Wed, 13 Dec 2017 17:06:35 +0100 Subject: [PATCH] list of voucher partners is limited to those who can handle them --- smash/web/forms/voucher_forms.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/smash/web/forms/voucher_forms.py b/smash/web/forms/voucher_forms.py index 946486db..7067d0d9 100644 --- a/smash/web/forms/voucher_forms.py +++ b/smash/web/forms/voucher_forms.py @@ -56,6 +56,9 @@ class VoucherForm(ModelForm): instance = getattr(self, 'instance', None) if instance and instance.pk: self.fields['voucher_type'].widget.attrs['readonly'] = True + self.fields['usage_partner'].queryset = Worker.get_workers_by_worker_type(WORKER_VOUCHER_PARTNER).filter( + voucher_types = instance.voucher_type) + if instance.status != VOUCHER_STATUS_NEW: self.fields['status'].widget.attrs['readonly'] = True self.fields['feedback'].widget.attrs['readonly'] = True -- GitLab