Changeset - ef3d2ebc53ad
[Not reviewed]
default
0 2 0
Dennis Fink - 10 years ago 2015-02-15 22:12:01
dennis.fink@c3l.lu
Update membership form
2 files changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
ennstatus/root/forms.py
Show inline comments
 
@@ -49,19 +49,19 @@ class MembershipForm(Form):
 
                       )
 
    country = StringField('Country',
 
                          validators=[Optional()],
 
                          )
 
    gpg = StringField('GPG-ID',
 
                      validators=[Optional()],
 
                      )
 

	
 
    membership = RadioField('Membership Plan*',
 
                            validators=[DataRequired()],
 
                            choices=[
 
                                ('regular', 'Regular membership (120€/year)'),
 
                                ('student', 'Student memnbership (60€/year)'),
 
                                ('student', 'Student membership (60€/year)'),
 
                                ('starving', 'Starving Hacker - Get in touch with us at info@enn.lu'),
 
                            ]
 
                            )
 

	
 
    c3l = BooleanField('Include "Chaos Computer Club Lëtzebuerg" Membership<sup>1</sup>')
 
    submit = SubmitField('Become a member')
setup.py
Show inline comments
 
@@ -21,24 +21,25 @@ setup(name='Ennstatus',
 
      packages=find_packages(),
 
      package_data={'ennstatus': ['static/css/*.css',
 
                                  'static/css/flags/img/png/*.png',
 
                                  'static/css/flags/img/gif/*.gif',
 
                                  'static/css/flags/*.css',
 
                                  'static/files/*',
 
                                  'static/images/*',
 
                                  'static/videos/*',
 
                                  'templates/*.html',
 
                                  'templates/api/export/xml/*.xml',
 
                                  'templates/donate/*.html',
 
                                  'templates/root/*.html',
 
                                  'templates/root/*.txt',
 
                                  'templates/status/*.html',
 
                                  'templates/stats/*.html',
 
                                  'templates/errorpages/*.html',
 
                                  ]},
 
      install_requires=_get_requirements(),
 
      classifiers=['Development Status :: 5 - Production/Stable',
 
                   'Environment :: Web Environment',
 
                   'Operating System :: POSIX',
 
                   'Programming Language :: Python',
 
                   'Programming Language :: Python :: 3',
 
                   'Programming Language :: Python :: 3.3',
 
                   'Topic :: Internet',
0 comments (0 inline, 0 general)