X-Git-Url: http://git.onelab.eu/?p=myslice.git;a=blobdiff_plain;f=portal%2Fforms.py;fp=portal%2Fforms.py;h=9bcf8fa6ab74029fc7a4f23cbdb3be7483cf1088;hp=6a23e784881f6af032d6defcc767aa625bceb41f;hb=194f64e52b806bafa5a5e0ed2940b94a462fe87e;hpb=641432a9373ea5466ab8fd1cc7114950660b609f diff --git a/portal/forms.py b/portal/forms.py index 6a23e784..9bcf8fa6 100644 --- a/portal/forms.py +++ b/portal/forms.py @@ -64,27 +64,27 @@ class SliceRequestForm(forms.Form): slice_name = forms.CharField( widget=forms.TextInput(attrs={'class':'form-control'}), - help_text="Enter a name for the slice you wish to create") + help_text="The name for the slice you wish to create") authority_hrn = forms.ChoiceField( widget = forms.Select(attrs={'class':'form-control'}), choices = [], - help_text = "Please select an authority responsible for vetting your slice") + help_text = "An authority responsible for vetting your slice") number_of_nodes = forms.DecimalField( widget = forms.TextInput(attrs={'class':'form-control'}), - help_text = "Enter the number of nodes you expect to request (informative only)") + help_text = "The number of nodes you expect to request (informative)") type_of_nodes = forms.CharField( widget = forms.TextInput(attrs={'class':'form-control'}), - help_text = "Enter the type of nodes you expect to request (informative only)") + help_text = "The type of nodes you expect to request (informative)") purpose = forms.CharField( widget = forms.Textarea(attrs={'class':'form-control'}), - help_text = "Enter the purpose of your experiment (informative only)") + help_text = "The purpose of your experiment (informative)") email = forms.EmailField( widget = forms.TextInput(attrs={'class':'form-control'}), - help_text = "Enter your email address") + help_text = "Your email address") cc_myself = forms.BooleanField( widget = forms.CheckboxInput(attrs={'class':'form-control'}), required = False, - help_text = "Please indicate whether you would like to be CC'ed to the request email") + help_text = "If you'd like to be cc'ed on the request email") def __init__(self, *args, **kwargs): initial = kwargs.get('initial', {}) @@ -106,5 +106,5 @@ class SliceRequestForm(forms.Form): 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") + help_text = "An authority responsible for vetting your slice")