Commit 14352ea9 authored by Brescia Amandy's avatar Brescia Amandy

Edited Assignment page view to fix line breaks

parent c9fbd818
...@@ -10,7 +10,7 @@ def assignments(request): ...@@ -10,7 +10,7 @@ def assignments(request):
return_string += 'Description: {}<br>'.format(assignment.description) return_string += 'Description: {}<br>'.format(assignment.description)
return_string += 'Perfect Score: {}<br>'.format(assignment.perfect_score) return_string += 'Perfect Score: {}<br>'.format(assignment.perfect_score)
return_string += 'Passing Score: {}<br>'.format(assignment.passing_score) return_string += 'Passing Score: {}<br>'.format(assignment.passing_score)
return_string += 'Course/Section: {} {}-{}'.format(course.code, course.title, course.section) return_string += 'Course/Section: {} {}-{}<br><br>'.format(course.code, course.title, course.section)
return HttpResponse(return_string) return HttpResponse(return_string)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment