Example #1
0
def australia():
    return render_template("australia.html", entries = Adapter.final_adapter('"australia"',3))
Example #2
0
def europe():
    return render_template("europe.html", entries = Adapter.final_adapter('"europe"',3))
Example #3
0
def africa():
    return render_template("africa.html", entries = Adapter.final_adapter('"africa"',3))
Example #4
0
def southamerica():
    return render_template("southamerica.html", entries = Adapter.final_adapter('"south america"',3))
Example #5
0
File: app.py Project: Ninamma/Trial
def australia():
    return render_template(
        "australia.html",
        entries=Adapter.final_adapter('assets AND australia'))
Example #6
0
File: app.py Project: Ninamma/Trial
def africa():
    return render_template("africa.html",
                           entries=Adapter.final_adapter('assets AND africa'))
Example #7
0
File: app.py Project: Ninamma/Trial
def europe():
    return render_template("europe.html",
                           entries=Adapter.final_adapter('assets AND europe'))
Example #8
0
File: app.py Project: Ninamma/Trial
def northamerica():
    return render_template(
        "northamerica.html",
        entries=Adapter.final_adapter('assets AND "north america"'))