diff options
author | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:44:35 +0100 |
---|---|---|
committer | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:44:35 +0100 |
commit | 264594ed05b2723f443798a326d07afbbdaf185f (patch) | |
tree | cd482abf252c31f0fe9fc88796bf6eb45e6e20c9 /expo/views_other.py | |
parent | 1e1453f44351e0c8b7b725e008ef33bc53c70689 (diff) | |
download | troggle-264594ed05b2723f443798a326d07afbbdaf185f.tar.gz troggle-264594ed05b2723f443798a326d07afbbdaf185f.tar.bz2 troggle-264594ed05b2723f443798a326d07afbbdaf185f.zip |
[svn] made index of people
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8224 by julian @ 1/24/2009 6:26 PM
Diffstat (limited to 'expo/views_other.py')
-rw-r--r-- | expo/views_other.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/expo/views_other.py b/expo/views_other.py index 7d5d655..7c5fc92 100644 --- a/expo/views_other.py +++ b/expo/views_other.py @@ -28,7 +28,7 @@ def frontPage(request): message = "Reloaded survexblocks"
#'randSent':randSent.randomLogbookSentence(),
- expeditions = Expedition.objects.all()
+ expeditions = Expedition.objects.order_by("-year")
return render_to_response('index.html', {'expeditions':expeditions, 'settings':settings, "message":message})
def calendar(request,year):
|