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

« back to all changes in this revision

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

Added a method onto offering to find all the users enroled in the subject
who are students.

Modified the project view to show the list of students/groups who are
currently assigned to that project.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
      <py:for each="submission in submissions">
13
13
        <p>Submitted ${format_datetime_short(submission.date_submitted)} on behalf of <em>${submission.assessed.principal.display_name}</em> by <em>${submission.submitter.display_name}</em></p>
14
14
      </py:for>
 
15
      <table>
 
16
        <tr><th>Assigned</th></tr>
 
17
        <py:for each="assignee in assigned">
 
18
          <tr><td>${assignee.display_name}</td></tr>
 
19
        </py:for>
 
20
      </table>
15
21
    </div>
16
22
  </body>
17
23
</html>