diff options
author | Akshen | 2019-06-10 14:17:26 +0530 |
---|---|---|
committer | GitHub | 2019-06-10 14:17:26 +0530 |
commit | ece0ca579abd4755bc6ef225b4c49b11d7b78027 (patch) | |
tree | 7b01948375effe46ad1710bf3d8e881e20104d05 /fossee_manim | |
parent | 5b84a9d0eff5516a873ce55bede5844dcc004ae4 (diff) | |
parent | 325cf6d268a30231a8d00dae3fad57d1adc77fee (diff) | |
download | FOSSEE_animations-ece0ca579abd4755bc6ef225b4c49b11d7b78027.tar.gz FOSSEE_animations-ece0ca579abd4755bc6ef225b4c49b11d7b78027.tar.bz2 FOSSEE_animations-ece0ca579abd4755bc6ef225b4c49b11d7b78027.zip |
Merge pull request #29 from Akshen/develop
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') |