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

« back to all changes in this revision

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

Merged from new-dispatch branch.
This branch is now a child of new-dispatch (until that branch is merged with
    trunk).

Show diffs side-by-side

added added

removed removed

Lines of Context:
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">
 
2
      xmlns:py="http://genshi.edgewall.org/">
 
3
  <head>
5
4
    <title>Tutorial - Worksheet</title>
 
5
    <!-- These let the javascript know which worksheet is open -->
 
6
    <script type="text/javascript">
 
7
        subject = "${subject}";
 
8
        worksheet = "${worksheet}";
 
9
    </script>
6
10
  </head>
7
 
  <body class="innerbody" py:strip="">
 
11
  <body>
8
12
    <div id="ivle_padding">
9
13
      <h1>IVLE Tutorials - ${subject}</h1>
10
14
      <!-- Display the Table Of Contents -->
12
16
        <h2>Worksheet Contents</h2>
13
17
        <ul>
14
18
          <py:for each="exercise in exercises">
15
 
            <li class="${exercise['complete']}" id="#exercise${exercise['exid']}">
 
19
            <li class="${exercise['complete']}" id="toc_li_exercise${exercise['exid']}">
16
20
              <a href="#exercise${exercise['exid']}">
17
21
                ${exercise.name}
18
22
              </a>