Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{% extends "_base.html" %}
{% block menu %}{% endblock %}
{% block content %}
<h2>Game Design 2</h2>
{% for assignment in assignments %}
<h2>{{assignment.name}}</h2>
<table class="table table-striped">
<thead>
<tr>
<th>Criteria</th>
<th>Mark</th>
<th>Feedback</th>
</tr>
</thead>
<tbody>
{% for item in assignment.feedback %}
<tr>
<th>{{item.criteria}}</td>
<td><sup>{{item.mark}}</sup> / <sub>{{item.maxMark}}</sub></td>
<td>{{item.feedback}}</td>
</tr>
{% endfor %}
</tbody>
<tfoot>
<tr>
<th>Total</th>
<td>{{assignment}}</td>
<td></td>
</tfoot>
</table>
{% endfor %}
Module Total: {{assignment}}
{% endblock %}