Display all tags in add_post and edit_post

Reverse post list in all_posts
This commit is contained in:
Gregory Soutade
2013-11-03 09:17:24 +01:00
parent 0394ada46e
commit f66feb4dbe
5 changed files with 39 additions and 3 deletions

View File

@@ -60,6 +60,8 @@ class AllPosts(Index):
cur_posts.append(p)
continue
cur_posts = cur_posts.reverse()
month_elem = self.createElement(dom, 'month')
month_def = dom.createElement('month')
month_def.appendChild(dom.createTextNode(cur_posts[0].creation_date.strftime(date_format)))
@@ -80,6 +82,7 @@ class AllPosts(Index):
# Last month
if not month_elem is None and len(cur_posts) != 0:
cur_posts = cur_posts.reverse()
month_elem = self.createElement(dom, 'month')
month_def = dom.createElement('month')
month_def.appendChild(dom.createTextNode(cur_posts[0].creation_date.strftime(date_format)))