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

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>
1146 by William Grant
Move Groups into the 'subjects' tab (giving it a favicon) and put the
4
    <title>Groups - ${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>
1129 by William Grant
Move the group admin view to per-offering.
7
    <h1>Groups for ${offering.subject.name}</h1>
1093 by chadnickbok
Adding the changes from my genshi branch into trunk.
8
    <div id="ivle_padding">
1144 by William Grant
Move the group management listing logic onto the server side, in a template.
9
      <div id="offering_groups" >
10
        <dl>
11
          <py:for each="project_set in offering.project_sets">
12
            <dt>Project Set ${project_set.id}</dt>
13
            <dd>
14
              <ul>
15
                <li py:for="group in project_set.project_groups"
16
                    id="project_group_${group.id}">
17
                  ${group.name}
18
                  <a onclick="manage_group(${offering.id}, ${group.id} ,'project_group_${group.id}')"
19
                     class="choice"
20
                     id="project_group_${group.id}_button">
21
                    (manage)
22
                  </a>
23
                </li>
24
                <li><input value="New" type="button" onclick="create_new_group(${project_set.id})" /></li>
25
              </ul>
26
            </dd>
27
          </py:for>
28
        </dl>
29
      </div>
1093 by chadnickbok
Adding the changes from my genshi branch into trunk.
30
    </div>
31
  </body>
32
</html>