fsd
This commit is contained in:
parent
8e287aca6c
commit
ab18b16930
8 changed files with 40 additions and 37 deletions
|
@ -268,11 +268,11 @@ def image_posts_listing(v):
|
|||
try: page = int(request.values.get('page', 1))
|
||||
except: page = 1
|
||||
|
||||
posts = g.db.query(Submission).order_by(Submission.id.desc())
|
||||
posts = g.db.query(Submission.id).order_by(Submission.id.desc())
|
||||
|
||||
firstrange = 25 * (page - 1)
|
||||
secondrange = firstrange+26
|
||||
posts = [x.id for x in posts if x.is_image][firstrange:secondrange]
|
||||
posts = [x[0] for x in posts if x.is_image][firstrange:secondrange]
|
||||
next_exists = (len(posts) > 25)
|
||||
posts = get_posts(posts[:25], v=v)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue