reworked assignments_template.html into two templates

parent ec0b83f5
<html>
<head>
<title>Assignments</title>
</head>
<body>
ASSIGNMENTS: <br>
{% for assignment in all_assignments %}
Assignment Name: {{ assignment.name }}<br>
Description: {% if assignment.description != None and assignment.description != '' %}{{ assignment.description }}{% else %}No description provided.{% endif %}<br>
Perfect Score: {{ assignment.max_points }}<br>
Passing Score: {{ assignment.passing_score }}<br>
Course/Section: {{ assignment.course.course_code }} {{ assignment.course.course_title }} {{ assignment.course.section }}<br><br>
{% endfor %}
</body>
</html>
\ 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