from flask import Blueprint from flask.ext.login import current_user authorization = Blueprint('authorization', __name__, template_folder='templates') @authorization.before_app_request def before_request(): print current_user
Но ругается на current_user, можно это как-то обойти?