From: Jordan Augé <jordan.auge@lip6.fr>
Date: Fri, 18 Oct 2013 15:44:09 +0000 (+0200)
Subject: portal.slice_request: fixed message for authority
X-Git-Tag: myslice-0.2-5~4
X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=2dc73f7ed3bbb2090f1e29c734269181dda18db1;p=myslice.git

portal.slice_request: fixed message for authority
---

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")