From 4f56c348df5dbb0250ca4288cacd7a4de2571774 Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Tue, 17 Jul 2018 14:57:23 +0200 Subject: [PATCH] activity_type is disabled when editing voucher --- smash/web/forms/voucher_forms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/smash/web/forms/voucher_forms.py b/smash/web/forms/voucher_forms.py index 6e2e9478..725c9ff9 100644 --- a/smash/web/forms/voucher_forms.py +++ b/smash/web/forms/voucher_forms.py @@ -57,6 +57,7 @@ class VoucherForm(ModelForm): if instance and instance.pk: self.fields['voucher_type'].widget.attrs['readonly'] = True self.fields['hours'].widget.attrs['readonly'] = True + self.fields['activity_type'].widget.attrs['readonly'] = True self.fields['usage_partner'].widget.attrs['readonly'] = True if instance.status in [VOUCHER_STATUS_USED, VOUCHER_STATUS_EXPIRED]: -- GitLab