Exemplo n.º 1
0
def inject_context():
    '''Make categories available to all templates'''
    return dict(categories=dbo.get_categories())
Exemplo n.º 2
0
def inject_context():
    '''Make categories available to all templates'''
    return dict(categories=dbo.get_categories())
Exemplo n.º 3
0
def show_catalog_json():
    categories = dbo.get_categories()
    return jsonify(Category=[c.serialize for c in categories])
Exemplo n.º 4
0
def show_catalog_json():
    categories = dbo.get_categories()
    return jsonify(Category=[c.serialize for c in categories])