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

« back to all changes in this revision

Viewing changes to www/apps/groups/template.html

  • Committer: me at id
  • Date: 2009-01-15 06:11:32 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:1164
ivle.db: Remove get_enrolment and get_subjects_status. They're unused.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<html xmlns="http://www.w3.org/1999/xhtml"
2
 
      xmlns:xi="http://www.w3.org/2001/XInclude"
3
 
      xmlns:py="http://genshi.edgewall.org/" py:strip="">
4
 
 
5
 
  <body py:strip="">
6
 
    <div id="ivle_padding">
7
 
      <p py:if="no_enrolments">Error: You are not currently enrolled in any subjects.</p>
8
 
      <py:for each="enrolment in enrolments">
9
 
        <div id="subject${enrolment.offering_id}" class="subject">
10
 
          <h1>${enrolment.offering_name}</h1>
11
 
          <py:for each="group in enrolment['groups']">
12
 
            <h2>${group['nick']} (${group['name']})</h2>
13
 
            <py:choose test="group['is_member']">
14
 
              <py:when test="True">
15
 
                <p>You are a member of this group.</p>
16
 
              </py:when>
17
 
              <py:otherwise>
18
 
                <p>You have been invited to this group.</p>
19
 
                <p>
20
 
                  <input type="button" 
21
 
                      onclick="accept(&quot;${group['name']}&quot;)" 
22
 
                      value="Accept" />
23
 
                  <input type="button"
24
 
                      onclick="decline(&quot;${group['name']}&quot;)"
25
 
                      value="Decline" />
26
 
                </p>
27
 
              </py:otherwise>
28
 
            </py:choose>
29
 
            <h3>Members</h3>
30
 
            <ul>
31
 
              <py:for each="member in group['members']">
32
 
                <li>${member['fullname']} (${member['login']})</li>
33
 
              </py:for>
34
 
            </ul>
35
 
          </py:for>
36
 
        </div>
37
 
      </py:for>
38
 
      <py:if test="manage_groups">
39
 
        <hr />
40
 
        <h1>Group Administration</h1>
41
 
        <label for="subject_select">Subject:</label>
42
 
        <select id="subject_select">
43
 
          <py:for each="subject in manage_subjects">
44
 
            <option value="${subject['id']}">${subject['name']} (${subject['code']})</option>
45
 
          </py:for>
46
 
        </select>
47
 
        <input type="button" value="Manage" onclick="manage_subject()" />
48
 
        <div id="subject_div"></div>
49
 
      </py:if>
50
 
    </div>
51
 
  </body>
52
 
</html>