Skip to content

Commit

Permalink
Order a topic's talks by date
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaith committed May 12, 2016
1 parent 25c5ede commit 87b90c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion talks/events/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def show_person(request, person_slug):
def show_topic(request):
topic_uri = request.GET.get('uri')
api_topic = TOPICS_DATA_SOURCE.get_object_by_id(topic_uri)
events = Event.objects.filter(topics__uri=topic_uri)
events = Event.objects.filter(topics__uri=topic_uri).order_by('start')

#RB 3/5/16 get filtered by current talks in topic
show_all = request.GET.get('show_all', False)
Expand Down

0 comments on commit 87b90c3

Please sign in to comment.