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

« back to all changes in this revision

Viewing changes to ivle/webapp/tutorial/templates/worksheet.html

Replace most of the tutorial headings and titles.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<html xmlns="http://www.w3.org/1999/xhtml"
2
2
      xmlns:py="http://genshi.edgewall.org/">
3
3
  <head>
4
 
    <title>Tutorial - Worksheet</title>
 
4
    <title>${worksheet.name} - ${subject.name}</title>
5
5
    <!-- These let the javascript know which worksheet is open -->
6
6
    <script type="text/javascript">
7
 
        subject = "${subject}";
8
 
        worksheet = "${worksheet}";
 
7
        subject = "${subject.code}";
 
8
        worksheet = "${worksheet.identifier}";
9
9
        year = "${year}";
10
10
        semester = "${semester}";
11
11
    </script>
12
12
  </head>
13
13
  <body>
14
14
    <div id="ivle_padding">
15
 
      <h1>IVLE Tutorials - ${subject}</h1>
 
15
      <h1>${worksheet.name} in ${subject.name}</h1>
16
16
      <!-- Display the Table Of Contents -->
17
17
      <div id="tutorial-toc">
18
 
        <h2>Worksheet Contents</h2>
 
18
        <h2>Contents</h2>
19
19
        <ul>
20
20
          <py:for each="exercise in exercises">
21
21
            <li class="${exercise['complete']}" id="toc_li_${exercise['exid']}">
26
26
          </py:for>
27
27
        </ul>
28
28
      </div>
29
 
      <!-- Display The Worksheet -->
30
 
      <h2>${worksheetname}</h2>
31
29
      ${worksheetstream}
32
30
    </div>
33
31
  </body>