Пример #1
0
def sunglasses():
    sunglassesposts = databases.query_by_category("sunglases")
    return render_template("sunglasses.html" ,sunglasses = sunglassesposts)
Пример #2
0
def wallets():
    walletsposts = databases.query_by_category("wallets")
    return render_template("wallets.html",wallets = walletsposts)
Пример #3
0
def bags():
    bagsposts = databases.query_by_category("bags")
    return render_template("bags.html",bags =bagsposts)
Пример #4
0
def other():
    otherposts = databases.query_by_category("others")
    return render_template("other.html" ,others = otherposts)
Пример #5
0
def phones():
    phoneposts = databases.query_by_category("phones")
    return render_template("phones.html",phones = phoneposts )
Пример #6
0
def jewellery():
    jewelleryposts = databases.query_by_category("jewellery")
    return render_template("jewellery.html", jewellery = jewelleryposts)
Пример #7
0
def clothes():
    clothesposts = databases.query_by_category("clothes")
    return render_template("clothes.html", clothes=clothesposts)
Пример #8
0
def keys():
    keysposts = databases.query_by_category('keys')
    return render_template("keys.html", keys=keysposts)
Пример #9
0
def books():
    booksposts = databases.query_by_category("books")
    return render_template("books.html" , books=booksposts)