flask/tests/moduleapp/apps/admin/__init__.py
2010-08-09 15:16:02 +02: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')