We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f36598 commit 2072a62Copy full SHA for 2072a62
1 file changed
website/views.py
@@ -252,6 +252,7 @@ def filter(request, category=None, tutorial=None, minute_range=None, second_rang
252
253
#context['questions'] = questions.order_by('category', 'tutorial', 'minute_range', 'second_range')
254
questions = questions.annotate(total_answers=Count('answer'))
255
+ questions = questions.order_by('-date_created', 'category', 'tutorial')
256
raw_get_data = request.GET.get('o', None)
257
258
header = {
0 commit comments