Skip to content
Snippets Groups Projects
feedback.html 740 B
Newer Older
Joseph Walton-Rivers's avatar
Joseph Walton-Rivers committed
{% 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 %}