blob: bda6067529db518581b5081e599c37f6d1a74207 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from ..flask_extend import Blueprint
from flask import render_template, request, url_for
mod = Blueprint('consts', __name__)
@mod.route("/")
def all ():
return render_template("page.jinja")
@mod.route("/<int:id>")
def show(id):
return render_template("page.jinja")
|