summaryrefslogtreecommitdiff
path: root/app/builder/base.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2015-07-21 11:25:38 -0400
committerluxagraf <sng@luxagraf.net>2015-07-21 11:25:38 -0400
commitd17b1b5b59fb3232b849a10a03efa16a6f98acb1 (patch)
treed34ebf957c5767bce995ebb05939db12c2459371 /app/builder/base.py
parentd964debb5a3e0814c1b3249bcc4616742e85bae5 (diff)
fixed date based archives
Diffstat (limited to 'app/builder/base.py')
-rw-r--r--app/builder/base.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/builder/base.py b/app/builder/base.py
index 2db5cb3..12d4f68 100644
--- a/app/builder/base.py
+++ b/app/builder/base.py
@@ -132,9 +132,8 @@ class BuildWriting(Build):
month_name = m.strftime('%b')
month_full_name = m.strftime('%B')
qs = entry.objects.filter(status__exact=1, pub_date__year=year,
- pub_date__month=month).order_by('-pub_date')
- c = Context({'type': 'monthly', 'date': '%s %s' % (
- month_full_name, year), 'object_list': qs, })
+ pub_date__month=month).order_by('pub_date')
+ c = Context({'type': 'monthly', 'year': year, 'month': month_full_name, 'object_list': qs, })
t = render_to_string('archives/writing_date.html', c).encode('utf-8')
fpath = 'jrnl/%s/%s/' % (year, month)
self.write_file(fpath, t)