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

« back to all changes in this revision

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

  • Committer: matt.giuca
  • Date: 2009-01-18 23:03:54 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1166
setup.install: Merged change from Storm branch (should have been committed
    directly to trunk). Small bugfix.

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 for ${projectset.offering.subject.name}</title>
5
 
  </head>
6
 
  <body>
7
 
    <h1>Groups for ${projectset.offering.subject.name}</h1>
8
 
    <div id="ivle_padding">
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>
21
 
    </div>
22
 
  </body>
23
 
</html>