Commit f25a8022 authored by Ysabella Panghulan's avatar Ysabella Panghulan

converted passing and perfect scores to str

parent 88c185ed
......@@ -16,7 +16,7 @@ def assignments(request):
display += 'Assignment Name: ' + assignment_name + '<br>'
display += 'Description: ' + assignment_description + '<br>'
display += 'Perfect Score: ' + assignment_perfect_score + '<br>'
display += 'Passing Score: ' + assignment_passing_score + '<br>'
display += 'Perfect Score: ' + str(assignment_perfect_score) + '<br>'
display += 'Passing Score: ' + str(assignment_passing_score) + '<br>'
display += 'Course/Section: ' + course_code + ' ' + course_title + '-' + course_section + '<br><br>'
return HttpResponse(display)
\ No newline at end of file
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