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

« back to all changes in this revision

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

  • Committer: chadnickbok
  • Date: 2009-01-22 02:14:14 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1173
Fixes Issue #14

When uploading files, students will now be shown an
error message if there upload would replace already existing
files.

This upload will not be performed until it will not clobber
any old files.

Note that there is currently a way to change this behaviour in
the code in action.py, to allow files to be overwritten. However
there is no way this flag can be set through the browser interface
(yet).

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