X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Fforms.py;h=9bcf8fa6ab74029fc7a4f23cbdb3be7483cf1088;hb=5b238095884e99f7fa9776264a91fda169f71866;hp=c9cab82738ef594edf6f32dd17f3ba4115aff78f;hpb=4b33467baf861ce0e1e43b46d64d51db35577040;p=myslice.git diff --git a/portal/forms.py b/portal/forms.py index c9cab827..9bcf8fa6 100644 --- a/portal/forms.py +++ b/portal/forms.py @@ -5,6 +5,7 @@ # # Authors: # Jordan Augé +# Mohammed-Yasin Rahman # Copyright 2013, UPMC Sorbonne Universités / LIP6 # # This program is free software; you can redistribute it and/or modify it under @@ -21,30 +22,89 @@ # Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. from django import forms -from portal.models import PendingUser +from portal.models import PendingUser, PendingSlice #from crispy_forms.helper import FormHelper #from crispy_forms.layout import Submit +from django.utils.translation import ugettext_lazy as _ -class RegisterUserForm(forms.ModelForm): -# DEPRECATED # def __init__(self, *args, **kwargs): -# DEPRECATED # self.helper = FormHelper() -# DEPRECATED # self.helper.form_tag = False -# DEPRECATED # #self.helper.form_id = 'id-exampleForm' -# DEPRECATED # self.helper.form_class = 'blueForms' -# DEPRECATED # self.helper.form_method = 'post' -# DEPRECATED # #self.helper.form_action = 'submit_survey' -# DEPRECATED # self.helper.add_input(Submit('submit', 'Submit')) -# DEPRECATED # super(RegisterUserForm, self).__init__(*args, **kwargs) - - first_name = forms.CharField( widget=forms.TextInput ) - last_name = forms.CharField( widget=forms.TextInput ) - email = forms.CharField( widget=forms.TextInput ) - password = forms.CharField( widget=forms.PasswordInput ) - password2 = forms.CharField( widget=forms.PasswordInput ) - keypair = forms.CharField( widget=forms.FileInput ) - class Meta: - model = PendingUser - -class RegisterUserStep2Form(forms.ModelForm): - class Meta: - model = PendingUser +# xxx painful, but... +# bootstrap3 requires the fields to be tagged class='form-control' +# my first idea was to add this in the view template of course, BUT +# I can't find a way to access the 'type=' value for a given field +# I've looked rather deeply out there but to no avail so far +# so as we have a demo coming up soon, and until we can come with a less intrusive way to handle this... +# +# initial version was +#class ContactForm(forms.Form): +# first_name = forms.CharField() +# last_name = forms.CharField() +# affiliation = forms.CharField() +# subject = forms.CharField(max_length=100) +# message = forms.CharField(widget=forms.Textarea) +# email = forms.EmailField() +# cc_myself = forms.BooleanField(required=False) + +class ContactForm(forms.Form): + first_name = forms.CharField(widget=forms.TextInput(attrs={'class':'form-control'})) + last_name = forms.CharField(widget=forms.TextInput(attrs={'class':'form-control'})) + affiliation = forms.CharField(widget=forms.TextInput(attrs={'class':'form-control'})) + email = forms.EmailField(widget=forms.TextInput(attrs={'class':'form-control'})) + subject = forms.CharField(max_length=100,widget=forms.TextInput(attrs={'class':'form-control'})) + message = forms.CharField(widget=forms.Textarea(attrs={'class':'form-control'})) + cc_myself = forms.BooleanField(required=False,widget=forms.CheckboxInput(attrs={'class':'form-control'})) + +class SliceRequestForm(forms.Form): +# slice_name = forms.CharField() +# authority_hrn = forms.ChoiceField(choices=[(1, 'un')]) +# number_of_nodes = forms.DecimalField() +# type_of_nodes = forms.CharField() +# purpose = forms.CharField(widget=forms.Textarea) +# email = forms.EmailField() +# cc_myself = forms.BooleanField(required=False) + + slice_name = forms.CharField( + widget=forms.TextInput(attrs={'class':'form-control'}), + 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 = "An authority responsible for vetting your slice") + number_of_nodes = forms.DecimalField( + widget = forms.TextInput(attrs={'class':'form-control'}), + 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 = "The type of nodes you expect to request (informative)") + purpose = forms.CharField( + widget = forms.Textarea(attrs={'class':'form-control'}), + help_text = "The purpose of your experiment (informative)") + email = forms.EmailField( + widget = forms.TextInput(attrs={'class':'form-control'}), + help_text = "Your email address") + cc_myself = forms.BooleanField( + widget = forms.CheckboxInput(attrs={'class':'form-control'}), + required = False, + help_text = "If you'd like to be cc'ed on the request email") + + def __init__(self, *args, **kwargs): + initial = kwargs.get('initial', {}) + authority_hrn = initial.get('authority_hrn', None) + + # set just the initial value + # in the real form needs something like this {'authority_hrn':'a'} + # but in this case you want {'authority_hrn':('a', 'letter_a')} + if authority_hrn: + kwargs['initial']['authority_hrn'] = authority_hrn[0] + + # create the form + super(SliceRequestForm, self).__init__(*args, **kwargs) + + # self.fields only exist after, so a double validation is needed + 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( + widget = forms.Select(attrs={'class':'form-control'}), + choices = authority_hrn, + help_text = "An authority responsible for vetting your slice") +