diff options
Diffstat (limited to 'app/notes/build.py')
-rw-r--r-- | app/notes/build.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/notes/build.py b/app/notes/build.py index 09612dc..884c114 100644 --- a/app/notes/build.py +++ b/app/notes/build.py @@ -9,7 +9,7 @@ class BuildNotes(Build): self.build_detail_pages() def queryset(self): - return self.get_model().objects.all().order_by('date_created') + return self.get_model().objects.all().order_by('-date_created') def get_model(self): return get_model('notes', 'note') @@ -19,7 +19,7 @@ class BuildNotes(Build): Grab all the notes, render them to a template string and write that out to the filesystem ''' for entry in self.queryset(): - c = Context({'object': entry, 'MEDIA_URL': settings.BAKED_MEDIA_URL, 'IMAGES_URL': settings.BAKED_IMAGES_URL}) + c = Context({'object': entry, 'MEDIA_URL': settings.BAKED_MEDIA_URL, 'IMAGES_URL': settings.BAKED_IMAGES_URL, 'SITE_URL':settings.SITE_URL}) t = render_to_string('details/note.html', c).encode('utf-8') path = 'notes/%s/' % (entry.date_created.strftime("%Y/%m").lower()) self.write_file(path, t, 'html', entry.slug) |