1
<html xmlns="http://www.w3.org/1999/xhtml"
2
xmlns:xi="http://www.w3.org/2001/XInclude"
3
xmlns:py="http://genshi.edgewall.org/" py:strip="">
4
<head foo="bar" py:strip="">
5
<title>Tutorial - Top Level</title>
7
<body class="innerbody" py:strip="">
8
<div id="ivle_padding">
9
<h1>IVLE Tutorials</h1>
11
Welcome to the IVLE tutorial system.
12
Please select a subject from the list below to select a worksheet
17
<py:for each="subject in enrolled_subjects">
19
<a href="${subject.code}">${subject.name}</a>
23
<py:if test="len(unenrolled_subjects) > 0">
24
<h3>Other Subjects</h3>
26
You are not currently enrolled in these subjects.
27
Your marks will not be counted.
30
<py:for each="subject in unenrolled_subjects">
32
<a href="${subject.code}">${subject.name}</a>