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

« back to all changes in this revision

Viewing changes to ivle/webapp/groups/template.html

  • Committer: me at id
  • Date: 2009-01-15 03:27:59 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:branches%2Fstorm:1153
bin/ivle-{showenrolment,enrolallusers}: Don't use ivle.db.get_user(); use
    ivle.database.User.get_by_login() instead.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<html xmlns="http://www.w3.org/1999/xhtml"
2
 
      xmlns:py="http://genshi.edgewall.org/">
3
 
  <head>
4
 
    <title>Groups - ${offering.subject.name}</title>
5
 
  </head>
6
 
  <body>
7
 
    <h1>Groups for ${offering.subject.name}</h1>
8
 
    <div id="ivle_padding">
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>
30
 
    </div>
31
 
  </body>
32
 
</html>