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

1099.6.4 by Nick Chadwick
Exercise UI is now ready to be merged into trunk.
1
<html xmlns="http://www.w3.org/1999/xhtml"
2
      xmlns:py="http://genshi.edgewall.org/">
3
  <head>
4
    <title>Exercises</title>
5
    <!-- These let the javascript know which worksheet is open -->
6
    <script type="text/javascript">
7
    </script>
8
  </head>
9
  <body>
10
    <h1>Exercises</h1>
1099.1.229 by Nick Chadwick
Fixed a slight oversight, which meant there was no way to add a new
11
    <div id="ivle_padding">
12
    <a href="/+exercises/+add"><h3>Add a New Exercise</h3></a>
1099.6.4 by Nick Chadwick
Exercise UI is now ready to be merged into trunk.
13
    <ul>
14
      <py:for each="exercise in exercises">
15
        <li class="exercise_names">
16
          <div><a href="/+exercises/${exercise.id}/+delete"><img src="${mediapath}cross.png"/></a> <a class="exercise_header" href="/+exercises/${exercise.id}/+edit">${exercise.id}</a></div>${exercise.name}
17
        </li>
18
        <br />
19
      </py:for>
20
    </ul>
1099.1.228 by Nick Chadwick
Merged from trunk.
21
    </div>
1099.6.4 by Nick Chadwick
Exercise UI is now ready to be merged into trunk.
22
  </body>
23
</html>