1
<html xmlns="http://www.w3.org/1999/xhtml"
2
xmlns:py="http://genshi.edgewall.org/">
4
<title>Submit project</title>
7
<h1>Submit project</h1>
8
<div id="ivle_padding">
9
<py:choose test="offering">
11
<p>You may not submit files from <span style="font-family: monospace">${path}</span> in
13
<span py:when="principal is req.user">your repository.</span>
14
<span py:otherwise="">the repository for ${principal.display_name}.</span>
16
You can only submit files from a subject directory.
20
<p>You are submitting <span style="font-family: monospace">${path}</span> from
22
<span py:when="principal is req.user">your repository.</span>
23
<span py:otherwise="">the repository for ${principal.display_name}.</span>
26
<p>You may submit to any open project in ${offering.subject.name}. Which project do you wish to submit this for?</p>
27
<form action="" method="post">
28
<ul style="list-style: none">
29
<li py:for="project in principal.get_projects(offering=offering)"
30
py:with="attrs = {'disabled': 'disabled'} if project.deadline < now else {}">
31
<input type="radio" name="project" id="project_${project.id}" value="${project.id}" py:attrs="attrs" />
32
<label for="project_${project.id}">${project.name} - <em>${project.synopsis}</em> - (due ${format_datetime(project.deadline)})</label>
35
<p>Ensure that you have committed all changes - only changes in the repository will be submitted.</p>
36
<p>You may resubmit a project again at any time until its deadline.</p>
37
<p><input type="submit" value="Submit Project" /></p>