mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-30 15:04:18 +00:00
reverse x axis
This commit is contained in:
parent
b4a880c5a2
commit
04ac319087
1 changed files with 1 additions and 1 deletions
|
@ -360,7 +360,7 @@ def page_activity():
|
||||||
db_session = db.Session()
|
db_session = db.Session()
|
||||||
reports = db_session.query(db.ActivityReport).order_by(db.ActivityReport.timestamp.desc()).limit(192).all()
|
reports = db_session.query(db.ActivityReport).order_by(db.ActivityReport.timestamp.desc()).limit(192).all()
|
||||||
db_session.close()
|
db_session.close()
|
||||||
return render_template("activity.html", activityreports=reports)
|
return render_template("activity.html", activityreports=reversed(reports))
|
||||||
|
|
||||||
|
|
||||||
@app.route("/api/token")
|
@app.route("/api/token")
|
||||||
|
|
Loading…
Reference in a new issue