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

« back to all changes in this revision

Viewing changes to ivle/webapp/admin/templates/project.html

  • Committer: David Coles
  • Date: 2010-07-16 06:47:19 UTC
  • Revision ID: coles.david@gmail.com-20100716064719-j68ejmcf6akblw8a
Fix typo in rebuild_svn_config that caused Storm query to return limited or no 
submissions.

Fixes issue where lectueres and tutors did not have permission to access 
submissions by students in their subjects.

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>${project.name} for ${project.project_set.offering.subject.name}</title>
 
5
  </head>
 
6
  <body>
 
7
    <h1>${project.name} for ${project.project_set.offering.subject.name}</h1>
 
8
    <div id="ivle_padding">
 
9
      <div class="contextactions">
 
10
        <a py:if="'edit' in permissions"
 
11
           class="editaction"
 
12
           href="${req.publisher.generate(project, ProjectEdit)}">
 
13
           Change details
 
14
        </a>
 
15
        <a py:if="'edit' in permissions"
 
16
           class="deleteaction"
 
17
           href="${req.publisher.generate(project, ProjectDelete)}">
 
18
           Delete project
 
19
        </a>
 
20
      </div>
 
21
      <a py:if="project.url not in (None, '')" href="${project.url}">${project.url}</a>
 
22
      <p>Deadline: ${format_datetime(project.deadline)}</p>
 
23
      <p>${project.synopsis}</p>
 
24
      <p>Submissions: ${project.latest_submissions.count()}/${project.project_set.assigned.count()}</p>
 
25
 
 
26
      <h2>Latest submissions</h2>
 
27
      <div py:if="project.latest_submissions.count() == 0">
 
28
        There are no submissions.
 
29
      </div>
 
30
      <table id="project_submissions" class="pretty_table" summary="Latest Submissions"
 
31
             py:if="project.latest_submissions.count() > 0">
 
32
        <thead>
 
33
          <tr>
 
34
            <th>Group</th>
 
35
            <th>Submitter</th>
 
36
            <th>Date</th>
 
37
            <th>Download</th>
 
38
          </tr>
 
39
        </thead>
 
40
        <tbody>
 
41
        <py:for each="submission in project.latest_submissions">
 
42
          <tr>
 
43
          <py:choose test="submission.assessed.principal is submission.submitter">
 
44
            <td py:when="True">-</td>
 
45
            <td py:otherwise=""><span title="${submission.assessed.principal.display_name}">${submission.assessed.principal.short_name}</span></td>
 
46
          </py:choose>
 
47
            <td><span title="${submission.submitter.display_name}">${submission.submitter.short_name}</span></td>
 
48
            <td>${submission.date_submitted.strftime("%Y-%m-%d %H:%M:%S")}</td>
 
49
            <td>svn co -r${submission.revision} ${build_subversion_url(req, submission)}</td>
 
50
          </tr>
 
51
        </py:for>
 
52
        </tbody>
 
53
      </table>
 
54
      <p>Check these out with your IVLE username and Subversion password, as
 
55
      documented under <a class="helpaction"
 
56
      href="/+help/Files/Subversion#external">External Subversion
 
57
      access</a>.</p>
 
58
 
 
59
      <h2>Assigned submitters</h2>
 
60
      <div py:if="project.project_set.assigned.count() == 0"
 
61
           py:choose="project.project_set.is_group">
 
62
        <py:when test="True">There are no groups assigned to submit this project. Do you want to <a href="${req.publisher.generate(project.project_set, GroupsView)}">create some</a>?</py:when>
 
63
        <py:otherwise>There are no students assigned to submit this project. Do you want to <a href="${req.publisher.generate(project.project_set.offering, EnrolView)}">enrol some</a>?</py:otherwise>
 
64
      </div>
 
65
      <table id="project_assigneds" class="pretty_table"
 
66
             py:if="project.project_set.assigned.count() > 0">
 
67
        <thead><tr><th>Assigned</th></tr></thead>
 
68
        <tbody>
 
69
        <py:for each="assignee in project.project_set.assigned">
 
70
          <tr>
 
71
            <td><span title="${assignee.display_name}">${assignee.short_name}</span></td>
 
72
            <!-- <td><a>Grant an extension</a></td> -->
 
73
          </tr>
 
74
        </py:for>
 
75
        </tbody>
 
76
      </table>
 
77
    </div>
 
78
  </body>
 
79
</html>