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
|
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/">
<head>
<title>Tutorial - Worksheet</title>
<!-- These let the javascript know which worksheet is open -->
<script type="text/javascript">
subject = "${subject}";
worksheet = "${worksheet}";
year = "${year}";
semester = "${semester}";
</script>
</head>
<body>
<div id="ivle_padding">
<h1>IVLE Tutorials - ${subject}</h1>
<!-- Display the Table Of Contents -->
<div id="tutorial-toc">
<h2>Worksheet Contents</h2>
<ul>
<py:for each="exercise in exercises">
<li class="${exercise['complete']}" id="toc_li_${exercise['exid']}">
<a href="#${exercise['exid']}">
${exercise.name}
</a>
</li>
</py:for>
</ul>
</div>
<!-- Display The Worksheet -->
<h2>${worksheetname}</h2>
${worksheetstream}
</div>
</body>
</html>
|