se-hub/lib/flask/testsuite/test_apps/moduleapp/apps/admin/__init__.py
2015-05-09 22:00:14 +03:00

14 lines
259 B
Python

from flask import Module, render_template
admin = Module(__name__, url_prefix='/admin')
@admin.route('/')
def index():
return render_template('admin/index.html')
@admin.route('/index2')
def index2():
return render_template('./admin/index.html')