diff options
author | Akshen | 2017-11-06 15:45:21 +0530 |
---|---|---|
committer | Akshen | 2017-11-06 15:45:21 +0530 |
commit | 52afb684b1bd59cc1d5f2f1a6963b877a5604b37 (patch) | |
tree | f0131e6faf279e993151f80541945b0a55f6e07b /yaksh | |
parent | 9aeaf153851c7821336ab542b4fd8f4e621a8d65 (diff) | |
download | online_test-52afb684b1bd59cc1d5f2f1a6963b877a5604b37.tar.gz online_test-52afb684b1bd59cc1d5f2f1a6963b877a5604b37.tar.bz2 online_test-52afb684b1bd59cc1d5f2f1a6963b877a5604b37.zip |
Show Latest Active Course on top of Courses Page
Diffstat (limited to 'yaksh')
-rw-r--r-- | yaksh/views.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yaksh/views.py b/yaksh/views.py index 0d6acfe..e2412bb 100644 --- a/yaksh/views.py +++ b/yaksh/views.py @@ -793,9 +793,9 @@ def courses(request): if not is_moderator(user): raise Http404('You are not allowed to view this page') courses = Course.objects.filter( - creator=user, is_trial=False).order_by('-active') + creator=user, is_trial=False).order_by('-active', '-id') allotted_courses = Course.objects.filter( - teachers=user, is_trial=False).order_by('-active') + teachers=user, is_trial=False).order_by('-active', '-id') context = {'courses': courses, "allotted_courses": allotted_courses} return my_render_to_response('yaksh/courses.html', context, context_instance=ci) |