diff options
author | ankitjavalkar | 2019-02-05 12:14:32 +0530 |
---|---|---|
committer | ankitjavalkar | 2019-02-26 19:00:49 +0530 |
commit | 055dcaa679d50baab56b7e0c20b8de19a400d11c (patch) | |
tree | af218c3eac3f0305a826b5b4b87edc7c60fc47f0 /yaksh/views.py | |
parent | c70cf2a0fd8e51d4b689e08d78021cac848b0187 (diff) | |
download | online_test-055dcaa679d50baab56b7e0c20b8de19a400d11c.tar.gz online_test-055dcaa679d50baab56b7e0c20b8de19a400d11c.tar.bz2 online_test-055dcaa679d50baab56b7e0c20b8de19a400d11c.zip |
Multiple changes
- Fix failing test cases and make changes based on feedback
- Fix PEP8
Diffstat (limited to 'yaksh/views.py')
-rw-r--r-- | yaksh/views.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/yaksh/views.py b/yaksh/views.py index 4c1b7f7..1ba9890 100644 --- a/yaksh/views.py +++ b/yaksh/views.py @@ -175,11 +175,14 @@ def quizlist_user(request, enrolled=None, msg=None): ).order_by('-id') title = 'All Courses' - for c in courses: - _percent = c.get_completion_percent(user) if user in c.students.all() else None + for course in courses: + if user in course.students.all(): + _percent = course.get_completion_percent(user) + else: + _percent = None courses_data.append( { - 'data': c, + 'data': course, 'completion_percentage': _percent, } ) |