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

« back to all changes in this revision

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

  • Committer: Nick Chadwick
  • Date: 2009-02-25 16:39:59 UTC
  • mto: (1099.1.227 exercise-ui)
  • mto: This revision was merged to the branch mainline in revision 1162.
  • Revision ID: chadnickbok@gmail.com-20090225163959-3hsedlesu2pjm12e
Added a few extra files. I'm not sure if they're necessary, and I don't
have time to find out.

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>
8
7
    <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>
 
8
      <p py:if="not enrolments">Error: You are not currently enrolled in any subjects.</p>
 
9
      <py:for each="enrolment in enrolments">
 
10
        <div id="subject${enrolment.offering.id}" class="subject">
 
11
          <h1>${enrolment.offering.subject.name}</h1>
 
12
          <py:for each="group in get_user_groups(enrolment.offering)">
 
13
            <h2>${group.nick} (${group.name})</h2>
 
14
            <!-- Need proper test (for invite/membership). -->
 
15
            <!-- <py:choose test="group">
 
16
              <py:when test="True"> -->
 
17
                <p>You are a member of this group.</p>
 
18
              <!--</py:when>
 
19
              <py:otherwise>
 
20
                <p>You have been invited to this group.</p>
 
21
                <p>
 
22
                  <input type="button" 
 
23
                      onclick="accept(&quot;${group.name}&quot;)" 
 
24
                      value="Accept" />
 
25
                  <input type="button"
 
26
                      onclick="decline(&quot;${group.name}&quot;)"
 
27
                      value="Decline" />
 
28
                </p>
 
29
              </py:otherwise>
 
30
            </py:choose>-->
 
31
            <h3>Members</h3>
 
32
            <ul>
 
33
              <py:for each="member in group.members">
 
34
                <li>${member.fullname} (${member.login})</li>
 
35
              </py:for>
 
36
            </ul>
 
37
          </py:for>
 
38
        </div>
 
39
      </py:for>
 
40
      <py:if test="manage_subjects">
 
41
        <hr />
 
42
        <h1>Group Administration</h1>
 
43
        <label for="subject_select">Subject:</label>
 
44
        <select id="subject_select">
 
45
          <py:for each="subject in manage_subjects">
 
46
            <option value="${subject.id}">${subject.name} (${subject.code})</option>
 
47
          </py:for>
 
48
        </select>
 
49
        <input type="button" value="Manage" onclick="manage_subject()" />
 
50
        <div id="subject_div"></div>
 
51
      </py:if>
21
52
    </div>
22
53
  </body>
23
54
</html>