Skip to content

Commit

Permalink
Merge pull request #389 from jasonrig/bug-317
Browse files Browse the repository at this point in the history
changed experiment ordering from newest to oldest
  • Loading branch information
grischa committed Feb 24, 2015
2 parents 95dabc4 + 4be12b1 commit e24a9f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tardis/tardis_portal/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ def public_data(request):
list of public experiments
'''
c = Context({
'public_experiments': Experiment.safe.public(),
'public_experiments': Experiment.safe.public().order_by('-update_time'),
})
return HttpResponse(render_response_index(
request, 'tardis_portal/public_data.html', c))
Expand Down

0 comments on commit e24a9f3

Please sign in to comment.