Outils pour utilisateurs

Outils du site


Panneau latéral

Plan du Site:

python:flask:blueprints

Ceci est une ancienne révision du document !


Table des matières

Blueprints

home

home.py
from flask import Blueprint, render_template
 
home = Blueprint("home", __name__)
 
@home.route("/home")
def home_page():
    return render_template("index.html")

__init__.py

python/flask/blueprints.1607785242.txt.gz · Dernière modification: 2020/12/12 15:00 par marclebrun