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

« back to all changes in this revision

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

  • Committer: Matt Giuca
  • Date: 2009-12-01 04:27:58 UTC
  • mfrom: (1164.2.46 sphinx-docs)
  • Revision ID: matt.giuca@gmail.com-20091201042758-wuxd9bdec00c283i
Merged sphinx-docs branch. This adds Sphinx documentation for the entire IVLE system (for system administrators and developers), and removes all of our random old document files (all either irrelevant, or moved into the Sphinx docs nicely). Currently incomplete, but ready to merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
      <p>Submissions: ${project.latest_submissions.count()}/${project.project_set.assigned.count()}</p>
11
11
 
12
12
      <h2>Latest submissions</h2>
13
 
      <div py:if="project.latest_submissions.count() == 0">
14
 
        There are no submissions.
15
 
      </div>
16
 
      <table id="project_submissions" class="pretty_table" summary="Latest Submissions"
 
13
      <table id="project_submissions" class="project_list" summary="Latest Submissions"
17
14
             py:if="project.latest_submissions.count() > 0">
18
15
        <thead>
19
16
          <tr>
39
36
      </table>
40
37
 
41
38
      <h2>Assigned submitters</h2>
42
 
      <div py:if="project.project_set.assigned.count() == 0"
43
 
           py:choose="project.project_set.is_group">
44
 
        <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>
45
 
        <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>
46
 
      </div>
47
 
      <table id="project_assigneds" class="pretty_table"
48
 
             py:if="project.project_set.assigned.count() > 0">
 
39
      <table id="project_assigneds" class="project_list">
49
40
        <thead><tr><th>Assigned</th></tr></thead>
50
41
        <tbody>
51
42
        <py:for each="assignee in project.project_set.assigned">