~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: 2009-02-27 05:07:09 UTC
  • Revision ID: grantw@unimelb.edu.au-20090227050709-k16kvhyl50nzjbwm
Subject URLs now contain the short name (eg. info1) rather than the code
(eg. 600151).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<html xmlns="http://www.w3.org/1999/xhtml"
2
2
      xmlns:py="http://genshi.edgewall.org/">
3
3
  <head>
4
 
    <title>Groups for ${projectset.offering.subject.name}</title>
 
4
    <title>Groups</title>
5
5
  </head>
6
6
  <body>
7
 
    <h1>Groups for ${projectset.offering.subject.name}</h1>
 
7
    <h1>Groups for ${offering.subject.name}</h1>
8
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>
 
9
      <div id="offering_groups" />
21
10
    </div>
 
11
    <script type="text/javascript">
 
12
      manage_subject_offering(${offering.subject.id}, document.getElementById('offering_groups'));
 
13
    </script>
22
14
  </body>
23
15
</html>