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

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2010-02-15 02:31:08 UTC
  • Revision ID: grantw@unimelb.edu.au-20100215023108-ga1389krlfdwed08
Add quick docs for the object publisher.

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>