1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/">
<head>
<title>Project submitted</title>
</head>
<body>
<h1>Project submitted</h1>
<div id="ivle_padding">
<p>You successfully submitted ${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 submissions after the deadline may
incur a penalty.
It is important to verify each submission after you make it.</p>
<p><a class="verifyaction"
href="${submission.get_verify_url(req.user)}">Verify this submission</a></p>
<p>You can verify this submission at any time from the <a href="${req.publisher.generate(offering)}">subject page</a>.</p>
</div>
</body>
</html>
|