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>
|
|
1506
by Matt Giuca
Exercises page redone to be consistent with worksheets page. Now looks much better, and contains an edit button for each exercise. Also renamed page headings for both pages to 'manage' rather than 'edit' (consistent with links to these pages). |
4 |
<title>Manage exercises</title> |
1099.6.4
by Nick Chadwick
Exercise UI is now ready to be merged into trunk. |
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"> |
1508
by William Grant
Make the exercise list a pretty_table. |
12 |
<table class="pretty_table"> |
1514
by William Grant
Fix the worksheet and exercise management views to not have hover effects on their header rows. |
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> |
|
1506
by Matt Giuca
Exercises page redone to be consistent with worksheets page. Now looks much better, and contains an edit button for each exercise. Also renamed page headings for both pages to 'manage' rather than 'edit' (consistent with links to these pages). |
20 |
<td>
|
21 |
<a href='${req.publisher.generate(exercise)}/+edit' title='Edit'><img src="${mediapath + 'pencil.png'}" alt="Edit" /></a> |
|
22 |
</td> |
|
1514
by William Grant
Fix the worksheet and exercise management views to not have hover effects on their header rows. |
23 |
</tr> |
24 |
</tbody> |
|
1506
by Matt Giuca
Exercises page redone to be consistent with worksheets page. Now looks much better, and contains an edit button for each exercise. Also renamed page headings for both pages to 'manage' rather than 'edit' (consistent with links to these pages). |
25 |
</table> |
26 |
<br /> |
|
27 |
<a class="addaction" href="/+exercises/+add">Create new exercise</a> |
|
1099.1.228
by Nick Chadwick
Merged from trunk. |
28 |
</div> |
1099.6.4
by Nick Chadwick
Exercise UI is now ready to be merged into trunk. |
29 |
</body> |
30 |
</html> |