flask/tests/test_apps/blueprintapp/apps/admin/__init__.py

16 lines
362 B
Python
Raw Normal View History

from flask import Blueprint, render_template
2011-07-16 01:16:03 +02:00
admin = Blueprint('admin', __name__, url_prefix='/admin',
template_folder='templates',
static_folder='static')
@admin.route('/')
def index():
return render_template('admin/index.html')
@admin.route('/index2')
def index2():
return render_template('./admin/index.html')