Delete redundant and unused HTML template

parent a4c90365
{% block content %}
<h1>ASSIGNMENTS: </h1>
{% for assignment in assignments %}
<div class = "assignments">
<div class = "all_assignments">
<p>Assignment Name: {{ assignment.name }}</p>
<p>Description: {{ assignment.description }}</p>
<p>Perfect Score: {{ assignment.max_points }}</p>
<p>Passing Score: {{ assignment.passing_score }}</p>
<p>Course/Section: {{ assignment.course.course_code }}
{{ assignment.course.course_title }}
{{ assignment.course.section }}</p>
<br>
</div>
</div>
{% endfor %}
{% endblock %}
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