From 2dc73f7ed3bbb2090f1e29c734269181dda18db1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jordan=20Aug=C3=A9?= Date: Fri, 18 Oct 2013 17:44:09 +0200 Subject: [PATCH] portal.slice_request: fixed message for authority --- portal/forms.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/portal/forms.py b/portal/forms.py index 075f9427..6a23e784 100644 --- a/portal/forms.py +++ b/portal/forms.py @@ -103,5 +103,8 @@ class SliceRequestForm(forms.Form): if authority_hrn:# and authority_hrn[0] not in (c[0] for c in authority_hrn): # XXX This does not work, the choicefield is not updated... #self.fields['authority_hrn'].choices.extend(authority_hrn) - self.fields['authority_hrn'] = forms.ChoiceField( choices=authority_hrn) + self.fields['authority_hrn'] = forms.ChoiceField( + widget = forms.Select(attrs={'class':'form-control'}), + choices = authority_hrn, + help_text = "Please select an authority responsible for vetting your slice") -- 2.43.0