Changeset - 3433df0a07ae
[Not reviewed]
version_5
0 1 0
Dennis Fink - 9 years ago 2015-10-14 00:59:05
dennis.fink@c3l.lu
PEP8 root/forms.py
1 file changed with 12 insertions and 4 deletions:
0 comments (0 inline, 0 general)
ennstatus/root/forms.py
Show inline comments
 
@@ -14,104 +14,112 @@ COUNTRIES = [
 
    ('united_states', 'United States of America'),
 
    ('belgium', 'Belgium'),
 
    ('france', 'France'),
 
    ('germany', 'Germany'),
 
]
 

	
 

	
 
class BPMForm(Form):
 
    country = SelectField('Country',
 
                          validators=[DataRequired()],
 
                          choices=COUNTRIES)
 

	
 

	
 
class MembershipForm(Form):
 

	
 
    username = StringField('Username*',
 
                           validators=[
 
                               InputRequired('This field is required!'),
 
                               Length(max=255)
 
                           ]
 
                           )
 
    email = StringField('E-Mail*',
 
                        validators=[
 
                            InputRequired('This field is required!'),
 
                            Email()
 
                        ]
 
                        )
 
    fullname = StringField('Full name',
 
                           validators=[Length(max=65536)],
 
                           )
 
    street = StringField('Nr., Street',
 
                         validators=[Length(max=4000)],
 
                         )
 
    zip = StringField('ZIP-Code',
 
                      validators=[Length(max=30)],
 
                      )
 
    city = StringField('City/Town',
 
                       validators=[Length(max=500)],
 
                       )
 
    country = StringField('Country',
 
                          validators=[Length(max=500)],
 
                          )
 
    gpg = StringField('GPG-ID',
 
                      validators=[Length(max=18)],
 
                      )
 

	
 
    membership = RadioField('Membership Plan*',
 
                            validators=[
 
                                InputRequired('Please select one of the options!')
 
                                InputRequired(
 
                                    'Please select one of the options!'
 
                                )
 
                            ],
 
                            choices=[
 
                                ('regular', 'Regular membership (120€/year)'),
 
                                ('student', 'Student membership (60€/year)'),
 
                                ('starving', 'Starving Hacker - Get in touch with us at info@enn.lu'),
 
                                ('starving',
 
                                 'Starving Hacker - Get in touch with us at info@enn.lu'
 
                                 ),
 
                            ]
 
                            )
 

	
 
    c3l = BooleanField('Include "Chaos Computer Club Lëtzebuerg" Membership<sup>1</sup>')
 
    c3l = BooleanField(
 
        'Include "Chaos Computer Club Lëtzebuerg" Membership<sup>1</sup>'
 
    )
 
    submit = SubmitField('Become a member')
 

	
 

	
 
class BridgeprogramForm(Form):
 

	
 
    fullname = StringField('Full name',
 
                           validators=[Length(max=65536)],
 
                           )
 

	
 
    email = StringField('E-Mail*',
 
                        validators=[
 
                            InputRequired('This field is required!'),
 
                            Email()
 
                        ]
 
                        )
 

	
 
    bridgename = StringField('Bridge name',
 
                             validators=[
 
                                 InputRequired('This field is required!'),
 
                                 Length(max=65536)
 
                             ]
 
                             )
 

	
 
    duration = RadioField('Duration',
 
                          validators=[
 
                              InputRequired('Please select one of the options!')
 
                              InputRequired(
 
                                  'Please select one of the options!'
 
                              )
 
                          ],
 
                          choices=[
 
                              ('1', '1 year'),
 
                              ('2', '2 years'),
 
                          ]
 
                          )
 

	
 
    payment = RadioField('Payment Method',
 
                         validators=[
 
                             InputRequired('Please select one of the options!')
 
                         ],
 
                         choices=[
 
                             ('wiretransfer', 'Wiretransfer'),
 
                             ('bitcoin', 'Bitcoin'),
 
                             ('paypal', 'PayPal'),
 
                             ('snailmail', 'Snailmail')
 
                         ]
 
                         )
 

	
 
    submit = SubmitField('Apply')
0 comments (0 inline, 0 general)