Skip to content
Permalink
75b02e8f99
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
47 lines (38 sloc) 1011 Bytes
{% extends "base.html" %}
{% block content %}
<h1>{{ page.meta.title }}</h1>
{% if page.meta.rendername %}
<div class="admonition important">
<p class="admonition-title">Assessment brief</p>
<a href="{{ page.meta.rendername | url }}" target="_blank"> View as Coursework Brief</a>
</div>
{% endif %}
<h3>Submission Informtion</h3>
<table>
<tbody>
<tr>
<td>Handout Date</td>
<td>{{ page.meta.handout }}</td>
</tr>
<tr>
<td>Due Date</td>
<td>{{ page.meta.due }}</td>
</tr>
<tr>
<td>Estimated Effort</td>
<td>{{ page.meta.effort }}</td>
</tr>
<tr>
<td>Percentage of Module Mark</td>
<td>{{ page.meta.percentage }}</td>
</tr>
</tbody>
</table>
<h3>ILO's Assessed</h3>
<ul>
{% for item in page.meta.ilos %}
<li>{{ item }}</li>
{% endfor %}
</ul>
{{ super() }} {# Call super to load the parent version of this #}
{% endblock %}