Changeset - 3590fd918dd0
[Not reviewed]
version_5
0 1 0
Dennis Fink - 10 years ago 2015-10-08 22:49:00
dennis.fink@c3l.lu
PEP8 root/views.py
1 file changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
ennstatus/root/views.py
Show inline comments
 
@@ -49,17 +49,18 @@ def membership():
 
        if form.validate_on_submit():
 
            send_membership_mail(form)
 
            return redirect(url_for('root.member'))
 

	
 
    return render_template('root/membership.html', form=form)
 

	
 

	
 
@root_page.route('/mirrors')
 
def mirrors():
 
    return render_template('root/mirrors.html')
 

	
 
    
 

	
 
@root_page.route('/contact', methods=('GET', 'POST'))
 
def contact():
 

	
 
    current_app.logger.info('Handling contact')
 
    form = BPMForm()
 
    country_choices = [choice[0] for choice in form.country.choices]
0 comments (0 inline, 0 general)