コード例 #1
0
ファイル: snapshots.py プロジェクト: rckclmbr/snapshots
def home():
    return render_template("index.html", recent=Snapshot.get_recent())
コード例 #2
0
ファイル: snapshots.py プロジェクト: rckclmbr/snapshots
def snapshot_result(guid):
    snapshot = db.session.query(Snapshot).get(guid)
    return render_template("snapshot_result.html", snapshot=snapshot, recent=Snapshot.get_recent())