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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:py="http://genshi.edgewall.org/">
  <head>
    <title>Groups - ${offering.subject.name}</title>
  </head>
  <body>
    <h1>Groups for ${offering.subject.name}</h1>
    <div id="ivle_padding">
      <div id="offering_groups" >
        <dl>
          <py:for each="project_set in offering.project_sets">
            <dt>Project Set ${project_set.id}</dt>
            <dd>
              <ul>
                <li py:for="group in project_set.project_groups"
                    id="project_group_${group.id}">
                  ${group.name}
                  <a onclick="manage_group(${offering.id}, ${group.id} ,'project_group_${group.id}')"
                     class="choice"
                     id="project_group_${group.id}_button">
                    (manage)
                  </a>
                </li>
                <li><input value="New" type="button" onclick="create_new_group(${project_set.id})" /></li>
              </ul>
            </dd>
          </py:for>
        </dl>
      </div>
    </div>
  </body>
</html>