1093
by chadnickbok
Adding the changes from my genshi branch into trunk. |
1 |
<html xmlns="http://www.w3.org/1999/xhtml" |
1099.1.25
by root
ivle.webapp.admin, ivle.webapp.groups, ivle.webapp.tutorial: Remove broken |
2 |
xmlns:py="http://genshi.edgewall.org/"> |
1099.1.17
by Nick Chadwick
Moved groups over to the new class-based xhtml templating way of being |
3 |
<head>
|
1356
by William Grant
Make the group admin UI a per-projectset view. |
4 |
<title>Groups for ${projectset.offering.subject.name}</title> |
1099.1.17
by Nick Chadwick
Moved groups over to the new class-based xhtml templating way of being |
5 |
</head> |
6 |
<body>
|
|
1356
by William Grant
Make the group admin UI a per-projectset view. |
7 |
<h1>Groups for ${projectset.offering.subject.name}</h1> |
1093
by chadnickbok
Adding the changes from my genshi branch into trunk. |
8 |
<div id="ivle_padding"> |
1356
by William Grant
Make the group admin UI a per-projectset view. |
9 |
<ul>
|
10 |
<li py:for="group in projectset.project_groups" |
|
11 |
id="project_group_${group.id}"> |
|
12 |
${group.name} |
|
13 |
<a onclick="manage_group(${projectset.offering.id}, ${group.id} ,'project_group_${group.id}')" |
|
14 |
class="choice" |
|
15 |
id="project_group_${group.id}_button"> |
|
16 |
(manage) |
|
17 |
</a> |
|
18 |
</li> |
|
19 |
<li><input value="New" type="button" onclick="create_new_group(${projectset.id})" /></li> |
|
20 |
</ul> |
|
1093
by chadnickbok
Adding the changes from my genshi branch into trunk. |
21 |
</div> |
22 |
</body> |
|
23 |
</html> |