1165.3.2
by Nick Chadwick
Created a new view for IVLE, allowing lecturers and tutors to |
1 |
<html xmlns="http://www.w3.org/1999/xhtml" |
2 |
xmlns:py="http://genshi.edgewall.org/"> |
|
3 |
<head>
|
|
1165.3.16
by William Grant
Rework titles for ProjectView. |
4 |
<title>${project.name} for ${project.project_set.offering.subject.name}</title> |
1165.3.2
by Nick Chadwick
Created a new view for IVLE, allowing lecturers and tutors to |
5 |
</head> |
6 |
<body>
|
|
1165.3.16
by William Grant
Rework titles for ProjectView. |
7 |
<h1>${project.name} for ${project.project_set.offering.subject.name}</h1> |
1165.3.2
by Nick Chadwick
Created a new view for IVLE, allowing lecturers and tutors to |
8 |
<div id="ivle_padding"> |
9 |
<p>${project.synopsis}</p> |
|
1165.3.40
by Nick Chadwick
Project view now correctly shows the number of submissions, versus the |
10 |
<p>Submissions: ${len(submissions)}/${len(assigned)}</p> |
1165.3.41
by Nick Chadwick
Modified the project view to display a list of submissions in a table. |
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> |
|
1165.3.14
by William Grant
Improve ProjectView's template substantially. |
19 |
<py:for each="submission in submissions"> |
1165.3.41
by Nick Chadwick
Modified the project view to display a list of submissions in a table. |
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> |
|
1165.3.8
by Nick Chadwick
Added a total submissions and total assesseds to the project view |
26 |
</py:for> |
1165.3.41
by Nick Chadwick
Modified the project view to display a list of submissions in a table. |
27 |
</table> |
1165.3.39
by Nick Chadwick
Added a method onto offering to find all the users enroled in the subject |
28 |
<table>
|
29 |
<tr><th>Assigned</th></tr> |
|
30 |
<py:for each="assignee in assigned"> |
|
1165.3.41
by Nick Chadwick
Modified the project view to display a list of submissions in a table. |
31 |
<tr>
|
32 |
<td>${assignee.display_name}</td> |
|
33 |
<td><a>Grant an extension</a></td> |
|
34 |
</tr> |
|
1165.3.39
by Nick Chadwick
Added a method onto offering to find all the users enroled in the subject |
35 |
</py:for> |
36 |
</table> |
|
1165.3.2
by Nick Chadwick
Created a new view for IVLE, allowing lecturers and tutors to |
37 |
</div> |
38 |
</body> |
|
39 |
</html> |