Files
@ 3f08fd32b5eb
Branch filter:
Location: FVDE/ennstatus/ennstatus/views.py - annotation
3f08fd32b5eb
736 B
text/x-python
Added BPM points
9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e | from flask import Blueprint, render_template
root_page = Blueprint('root', __name__)
@root_page.route('/')
def index():
return render_template('root/index.html')
@root_page.route('/about')
def about():
return render_template('root/about.html')
@root_page.route('/services')
def services():
return render_template('root/services.html')
@root_page.route('/partners')
def partners():
return render_template('root/partners.html')
@root_page.route('/contact')
def contact():
return render_template('root/contact.html')
@root_page.route('/abuse')
def abuse():
return render_template('root/abuse.html')
@root_page.route('/disclaimer')
def disclaimer():
return render_template('root/disclaimer.html')
|