~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-31 05:07:32 UTC
  • mto: (1165.3.1 submissions)
  • mto: This revision was merged to the branch mainline in revision 1174.
  • Revision ID: grantw@unimelb.edu.au-20090331050732-f6whz1z87dpekp2b
Add display_name properties to users and groups.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
  <body>
7
7
    <h1>Submit project</h1>
8
8
    <div id="ivle_padding">
9
 
 
10
 
      <py:choose test="offering">
11
 
        <div py:when="None">
12
 
          <p>You may not submit files from <span style="font-family: monospace">${path}</span> in
13
 
            <py:choose test="">
14
 
              <span py:when="principal is req.user">your repository.</span>
15
 
              <span py:otherwise="">the repository for ${principal.display_name}.</span>
16
 
            </py:choose>
17
 
            You can only submit files from a subject directory.
18
 
          </p>
19
 
        </div>
20
 
        <div py:otherwise="">
21
 
          <p>You are submitting <span style="font-family: monospace">${path}</span> from
22
 
            <py:choose test="">
23
 
              <span py:when="principal is req.user">your repository.</span>
24
 
              <span py:otherwise="">the repository for ${principal.display_name}.</span>
25
 
            </py:choose>
26
 
          </p>
27
 
          <p>You may submit to any open project in ${offering.subject.name}. Which project do you wish to submit this for?</p>
28
 
          <form action="" method="post">
29
 
            <ul style="list-style: none">
30
 
              <li py:for="project in principal.get_projects(offering=offering)"
31
 
                  py:with="attrs = {'disabled': 'disabled'} if project.deadline &lt; now else {}">
32
 
                <input type="radio" name="project" id="project_${project.id}" value="${project.id}" py:attrs="attrs" />
33
 
                <label for="project_${project.id}">${project.name} - <em>${project.synopsis}</em> - (due ${format_datetime(project.deadline)})</label>
34
 
              </li>
35
 
            </ul>
36
 
            <p>Ensure that you have committed all changes - only changes in the repository will be submitted.</p>
37
 
            <p>You may resubmit a project again at any time until its deadline.</p>
38
 
            <p><input type="submit" value="Submit Project" /></p>
39
 
          </form>
40
 
        </div>
41
 
      </py:choose>
 
9
      <p>You are submitting '<span style="font-family: monospace">${path}</span>' from the repository for ${principal}.</p>
 
10
      <p>You may submit to any open project in ${offering}. 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(offering=offering)"
 
14
              py:with="attrs = {'disabled': 'disabled'} if project.deadline &lt; now else {}">
 
15
            <input type="radio" name="project" id="project_${project.id}" value="${project.id}" py:attrs="attrs" />
 
16
            <label for="project_${project.id}">${project.name} - <em>${project.synopsis}</em> - (due ${format_datetime(project.deadline)})</label>
 
17
          </li>
 
18
        </ul>
 
19
        <p>You may resubmit this project again at any time until the deadline.</p>
 
20
        <p><input type="submit" value="Submit Project" /></p>
 
21
      </form>
42
22
    </div>
43
23
  </body>
44
24
</html>