~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-20 07:05:34 UTC
  • Revision ID: coles.david@gmail.com-20100720070534-lf6de6rdszt1rchn
Fix svnremove typo in r1804

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
      <p>Submissions: ${project.latest_submissions.count()}/${project.project_set.assigned.count()}</p>
25
25
 
26
26
      <h2>Latest submissions</h2>
27
 
      <p>Check these out with your IVLE username and Subversion password, as
28
 
      documented under <a class="helpaction"
29
 
      href="/+help/Files/Subversion#external">External Subversion
30
 
      access</a>.<br />
31
 
      <a class="marksaction"
32
 
           href="${req.publisher.generate(project, ProjectExport)}">
33
 
           Bash script for exporting submitted projects
34
 
        </a>
35
 
      </p>
36
27
      <div py:if="project.latest_submissions.count() == 0">
37
28
        There are no submissions.
38
29
      </div>
55
46
          </py:choose>
56
47
            <td><span title="${submission.submitter.display_name}">${submission.submitter.short_name}</span></td>
57
48
            <td>${submission.date_submitted.strftime("%Y-%m-%d %H:%M:%S")}</td>
58
 
            <td>${submission.get_svn_export_command(req)}</td>
 
49
            <td>${submission.get_svn_checkout_command(req)}</td>
59
50
          </tr>
60
51
        </py:for>
61
52
        </tbody>
62
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>
63
58
 
64
 
      <h2>Expected submitters</h2>
 
59
      <h2>Assigned submitters</h2>
65
60
      <div py:if="project.project_set.assigned.count() == 0"
66
61
           py:choose="project.project_set.is_group">
67
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>
69
64
      </div>
70
65
      <table id="project_assigneds" class="pretty_table"
71
66
             py:if="project.project_set.assigned.count() > 0">
72
 
        <thead><tr><th>Name</th></tr></thead>
 
67
        <thead><tr><th>Assigned</th></tr></thead>
73
68
        <tbody>
74
69
        <py:for each="assignee in project.project_set.assigned">
75
70
          <tr>