Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

15 lines
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)