From 325cf6d268a30231a8d00dae3fad57d1adc77fee Mon Sep 17 00:00:00 2001 From: Akshen Date: Mon, 10 Jun 2019 14:15:09 +0530 Subject: descending order of proposals in contributor page --- fossee_manim/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fossee_manim') diff --git a/fossee_manim/views.py b/fossee_manim/views.py index 02992a7..a0d0c22 100644 --- a/fossee_manim/views.py +++ b/fossee_manim/views.py @@ -301,7 +301,7 @@ def proposal_status(request): anime_list = {} categories = Category.objects.all() if profile.position == 'contributor': - anime = Animation.objects.filter(contributor_id=user) + anime = Animation.objects.filter(contributor_id=user).order_by('-created') else: anime_list = Animation.objects.order_by('-created') -- cgit