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

« back to all changes in this revision

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

  • Committer: dilshan_a
  • Date: 2008-01-25 04:35:06 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:309
Added a passed key to return value of problem suite.

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
 
      <p>${project.synopsis}</p>
10
 
      <p>Submissions: ${len(submissions)}/${len(assigned)}</p>
11
 
      <table border="1" summary="Latest Submissions" 
12
 
          py:if="len(submissions) > 0">
13
 
        <tr>
14
 
          <th>Name</th>
15
 
          <th>Submitted By</th>
16
 
          <th>Time Submitted</th>
17
 
          <th>Repository</th>
18
 
        </tr>
19
 
      <py:for each="submission in submissions">
20
 
        <tr>
21
 
          <td>${submission.assessed.principal.display_name}</td>
22
 
          <td>${submission.submitter.display_name}</td>
23
 
          <td>${submission.date_submitted}</td>
24
 
          <td>${submission.path}</td>
25
 
        </tr>
26
 
      </py:for>
27
 
      </table>
28
 
      <table>
29
 
        <tr><th>Assigned</th></tr>
30
 
        <py:for each="assignee in assigned">
31
 
          <tr>
32
 
            <td>${assignee.display_name}</td>
33
 
            <td><a>Grant an extension</a></td>
34
 
          </tr>
35
 
        </py:for>
36
 
      </table>
37
 
    </div>
38
 
  </body>
39
 
</html>