1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/">
<head>
<title>Submit project - late</title>
</head>
<body>
<h1>Submit project - late</h1>
<div id="ivle_padding">
<form action="" method="post">
<input type="hidden" name="project" value="${project.id}" />
<input type="hidden" name="late" value="yes" />
<p class="form_error">The project has not yet been submitted.</p>
<p>You are about to submit ${project.name} for ${offering.subject.name}.</p>
<p>You may resubmit this project again at any time, but a new submission
will overwrite any made earlier, and further submissions may incur an
increased penalty.</p>
<p>This may incur a late penalty, at the discretion of the subject
coordinator, even if you have already submitted on time.</p>
<input type="submit" value="Submit Late" />
</form>
</div>
</body>
</html>
|