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

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2009-03-26 08:36:00 UTC
  • mto: (1165.3.1 submissions)
  • mto: This revision was merged to the branch mainline in revision 1174.
  • Revision ID: grantw@unimelb.edu.au-20090326083600-0nywchy08dzi0us1
Add an initial project selection UI to SubmitView.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
  </head>
6
6
  <body>
7
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>
8
23
  </body>
9
24
</html>