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

« back to all changes in this revision

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

  • Committer: Nick Chadwick
  • Date: 2009-03-08 06:07:16 UTC
  • mto: (1099.1.227 exercise-ui)
  • mto: This revision was merged to the branch mainline in revision 1162.
  • Revision ID: chadnickbok@gmail.com-20090308060716-f3i65yqr9otr7p5n
Exercise UI is now ready to be merged into trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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>
 
11
    <a><h3>Add a New Exercise</h3></a>
 
12
    <ul>
 
13
      <py:for each="exercise in exercises">
 
14
        <li class="exercise_names">
 
15
          <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}
 
16
        </li>
 
17
        <br />
 
18
      </py:for>
 
19
    </ul>
 
20
  </body>
 
21
</html>