Exemplo n.º 1
0
def home():
    return render_template("index.html", recent=Snapshot.get_recent())
Exemplo n.º 2
0
def snapshot_result(guid):
    snapshot = db.session.query(Snapshot).get(guid)
    return render_template("snapshot_result.html", snapshot=snapshot, recent=Snapshot.get_recent())