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

« back to all changes in this revision

Viewing changes to ivle/webapp/submit/submit.html

  • Committer: me at id
  • Date: 2009-01-14 23:23:12 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:branches%2Fstorm:1138
ivle.auth.autherror: Remove, moving AuthError into ivle.auth itself.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<html xmlns="http://www.w3.org/1999/xhtml"
2
 
      xmlns:py="http://genshi.edgewall.org/">
3
 
  <head>
4
 
    <title>Submit project</title>
5
 
  </head>
6
 
  <body>
7
 
    <h1>Submit project</h1>
8
 
    <div id="ivle_padding">
9
 
      <p>You are submitting '${path}' from the repository for ${principal}.</p>
10
 
      <p>Which project do you wish to submit this for?</p>
11
 
      <form action="" method="POST">
12
 
        <ul style="list-style: none">
13
 
          <li py:for="project in principal.get_projects()">
14
 
            <input type="radio" name="project" value="${project.id}">
15
 
              ${project.name} - <em>${project.synopsis}</em>
16
 
            </input>
17
 
          </li>
18
 
        </ul>
19
 
        <p>You may resubmit this project again at any time until the deadline.</p>
20
 
        <input type="submit" value="Submit Project" />
21
 
      </form>
22
 
    </div>
23
 
  </body>
24
 
</html>