~azzar1/unity/add-show-desktop-key

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
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:py="http://genshi.edgewall.org/">
  <head>
    <title>${worksheet.name} - ${subject.name}</title>
    <!-- These let the javascript know which worksheet is open -->
    <script type="text/javascript">
        subject = "${subject.code}";
        worksheet = "${worksheet.identifier}";
        year = "${year}";
        semester = "${semester}";
    </script>
  </head>
  <body>
    <h1>${worksheet.name} in ${subject.name}</h1>
    <div id="ivle_padding">
      <!-- Display the Table Of Contents -->
      <div id="tutorial-toc">
        <h2>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>
      ${worksheetstream}
    </div>
  </body>
</html>