remotes/1693045480750635534/spooky-22
Aevann1 2022-04-29 02:02:00 +02:00
parent 0cfb1be47f
commit e5014b4cf4
2 changed files with 7 additions and 6 deletions

View File

@ -431,6 +431,7 @@ def changelog(v):
page=page,
t=t,
v=v,
site=SITE
)
next_exists = (len(ids) > 25)
@ -443,7 +444,7 @@ def changelog(v):
@cache.memoize(timeout=86400)
def changeloglist(v=None, sort="new", page=1 ,t="all"):
def changeloglist(v=None, sort="new", page=1, t="all", site=None):
posts = g.db.query(Submission.id).filter_by(is_banned=False, private=False,).filter(Submission.deleted_utc == 0)

View File

@ -68,11 +68,11 @@ def sidebar(v):
@auth_required
def participation_stats(v):
return render_template("admin/content_stats.html", v=v, title="Content Statistics", data=stats())
return render_template("admin/content_stats.html", v=v, title="Content Statistics", data=stats(site=SITE))
@cache.memoize(timeout=86400)
def stats():
def stats(site=None):
day = int(time.time()) - 86400
week = int(time.time()) - 604800
@ -177,20 +177,20 @@ def chart():
@app.get("/weekly_chart")
@auth_required
def weekly_chart(v):
file = cached_chart(kind="weekly")
file = cached_chart(kind="weekly", site=SITE)
f = send_file(file)
return f
@app.get("/daily_chart")
@auth_required
def daily_chart(v):
file = cached_chart(kind="daily")
file = cached_chart(kind="daily", site=SITE)
f = send_file(file)
return f
@cache.memoize(timeout=86400)
def cached_chart(kind):
def cached_chart(kind, site):
now = time.gmtime()
midnight_this_morning = time.struct_time((now.tm_year,
now.tm_mon,