1
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:if="False">
5
<title>Tutorial - Worksheet</title>
2
xmlns:py="http://genshi.edgewall.org/">
4
<title>${worksheet.name} - ${subject.name}</title>
5
<!-- These let the javascript know which worksheet is open -->
6
<script type="text/javascript">
7
subject = "${subject.code}";
8
worksheet = "${worksheet.identifier}";
10
semester = "${semester}";
7
<body class="innerbody" py:strip="">
8
14
<div id="ivle_padding">
9
<h1>IVLE Tutorials - ${subject}</h1>
15
<h1>${worksheet.name} in ${subject.name}</h1>
10
16
<!-- Display the Table Of Contents -->
11
17
<div id="tutorial-toc">
12
<h2>Worksheet Contents</h2>
14
20
<py:for each="exercise in exercises">
15
<li class="${exercise['complete']}" id="toc_li_exercise${exercise['exid']}">
16
<a href="#exercise${exercise['exid']}">
21
<li class="${exercise['complete']}" id="toc_li_${exercise['exid']}">
22
<a href="#${exercise['exid']}">
23
<!-- Display The Worksheet -->
24
<h2>${worksheetname}</h2>