forked from MarseyWorld/MarseyWorld
dfs
parent
bed7ec1069
commit
2ffb955ccf
|
@ -99,8 +99,7 @@ def log(v):
|
||||||
|
|
||||||
page=int(request.values.get("page",1))
|
page=int(request.values.get("page",1))
|
||||||
|
|
||||||
if v and v.admin_level == 6: actions = g.db.query(ModAction).order_by(ModAction.id.desc()).offset(25 * (page - 1)).limit(26).all()
|
actions = g.db.query(ModAction).offset(25 * (page - 1)).limit(26).all()
|
||||||
else: actions=g.db.query(ModAction).filter(ModAction.kind!="shadowban", ModAction.kind!="unshadowban", ModAction.kind!="club", ModAction.kind!="unclub").order_by(ModAction.id.desc()).offset(25*(page-1)).limit(26).all()
|
|
||||||
|
|
||||||
next_exists = len(actions)==26
|
next_exists = len(actions)==26
|
||||||
actions = actions[:25]
|
actions = actions[:25]
|
||||||
|
|
Loading…
Reference in New Issue