diff options
author | luxagraf <sng@luxagraf.net> | 2014-06-09 14:51:22 +0000 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2014-06-09 14:51:22 +0000 |
commit | 63c62d596dfe49a3675f125b6481f138bdbf2498 (patch) | |
tree | 6b1119ca2988986fa073968c294a4ce828dafe21 /app/notes | |
parent | 09d1f8a5aa94bc56ac50a1162360ceae56c38dd0 (diff) |
fixed some bugs in notes and map build
Diffstat (limited to 'app/notes')
-rw-r--r-- | app/notes/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/notes/build.py b/app/notes/build.py index fa5dd1d..09612dc 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() + return self.get_model().objects.all().order_by('date_created') def get_model(self): return get_model('notes', 'note') |