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

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2010-02-11 07:16:07 UTC
  • Revision ID: grantw@unimelb.edu.au-20100211071607-601tq0prme3h41lu
Fix the worksheet and exercise management views to not have hover effects on their header rows.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
    <h1>Exercises</h1>
11
11
    <div id="ivle_padding">
12
12
      <table class="pretty_table">
13
 
        <tr><th>Name</th><th>Display name</th><th>Actions</th></tr>
14
 
      <py:for each="exercise in exercises">
15
 
        <tr>
16
 
          <td><a class="exercise_header" href="${req.publisher.generate(exercise)}">${exercise.id}</a></td>
17
 
          <td>${exercise.name}</td>
 
13
        <thead>
 
14
          <tr><th>Name</th><th>Display name</th><th>Actions</th></tr>
 
15
        </thead>
 
16
        <tbody>
 
17
          <tr py:for="exercise in exercises">
 
18
            <td><a class="exercise_header" href="${req.publisher.generate(exercise)}">${exercise.id}</a></td>
 
19
            <td>${exercise.name}</td>
18
20
            <td>
19
21
              <a href='${req.publisher.generate(exercise)}/+edit' title='Edit'><img src="${mediapath + 'pencil.png'}" alt="Edit" /></a>
20
22
            </td>
21
 
        </tr>
22
 
      </py:for>
 
23
          </tr>
 
24
        </tbody>
23
25
      </table>
24
26
      <br />
25
27
    <a class="addaction" href="/+exercises/+add">Create new exercise</a>