diff options
author | Akshen | 2019-06-10 14:15:09 +0530 |
---|---|---|
committer | Akshen | 2019-06-10 14:15:09 +0530 |
commit | 325cf6d268a30231a8d00dae3fad57d1adc77fee (patch) | |
tree | 89facb65d065eab4bf52904409b9aab710af5120 /fossee_manim | |
parent | e7f02d34fc248bed0b27c55fd0b0d2180542dce2 (diff) | |
download | FOSSEE_animations-325cf6d268a30231a8d00dae3fad57d1adc77fee.tar.gz FOSSEE_animations-325cf6d268a30231a8d00dae3fad57d1adc77fee.tar.bz2 FOSSEE_animations-325cf6d268a30231a8d00dae3fad57d1adc77fee.zip |
descending order of proposals in contributor page
Diffstat (limited to 'fossee_manim')
-rw-r--r-- | fossee_manim/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
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') |