您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
346B

  1. from flask import Blueprint, render_template
  2. from flask_login import login_required, current_user
  3. from . import db
  4. main = Blueprint('main', __name__)
  5. @main.route('/')
  6. def index():
  7. return render_template('index.html')
  8. @main.route('/profile')
  9. @login_required
  10. def profile():
  11. return render_template('profile.html', name=current_user.name)