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

« back to all changes in this revision

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

  • Committer: David Coles
  • Date: 2010-07-28 10:45:53 UTC
  • mfrom: (1829 trunk)
  • mto: This revision was merged to the branch mainline in revision 1830.
  • Revision ID: coles.david@gmail.com-20100728104553-5z3nxt0l6kyfqfh5
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
    <div id="ivle_padding">
9
9
      <py:choose test="offering">
10
10
        <div py:when="None">
11
 
          <p>You may not submit files from <span style="font-family: monospace">${path}</span> in
 
11
          <p>Error: IVLE could not find a valid offering to submit to, from <span style="font-family: monospace">${path}</span> in
12
12
            <py:choose test="">
13
13
              <span py:when="principal is req.user">your repository.</span>
14
14
              <span py:otherwise="">the repository for ${principal.display_name}.</span>
15
15
            </py:choose>
16
 
            You can only submit files from a subject directory.
 
16
            This may have one of the following causes:
17
17
          </p>
 
18
          <ul>
 
19
            <li>You are not in a subject directory. You can only submit files from a subject directory. For example, you cannot submit a file from your "<code>stuff</code>" directory.</li>
 
20
            <li>You are not enrolled in the subject of that name. You can only submit files to a subject you are enrolled in.</li>
 
21
            <li>You are enrolled in a past (or even future) offering of the subject. You can only submit files to a current offering of a subject.</li>
 
22
          </ul>
18
23
        </div>
19
24
        <div py:otherwise="">
20
25
          <p>You are submitting <span style="font-family: monospace">${path}</span> from
27
32
          <form action="" method="post">
28
33
            <table>
29
34
              <tr py:for="project in principal.get_projects(offering=offering)"
30
 
                  py:with="attrs = {'disabled': 'disabled'} if project.has_deadline_passed(req.user) else {}"
31
35
                  py:attrs="{'class': 'project closed'} if project.has_deadline_passed(req.user) else {'class': 'project'}">
32
36
                <td style="vertical-align: top">
33
 
                  <input type="radio" name="project" id="project_${project.id}" value="${project.id}" py:attrs="attrs" />
 
37
                  <input type="radio" name="project" id="project_${project.id}" value="${project.id}" />
34
38
                </td>
35
39
                <td>
36
40
                  <label for="project_${project.id}">
60
64
                    </py:if>
61
65
                    <br />
62
66
                    ${project.synopsis}
 
67
                    <py:if test="project.has_deadline_passed(req.user)"><br />
 
68
                      <em>Note: The deadline has passed. You may still submit late, but a penalty may be incurred.</em>
 
69
                    </py:if>
63
70
                  </label>
64
71
                </td>
65
72
              </tr>
66
73
            </table>
67
74
            <p>Ensure that you have committed all changes - only changes in the repository will be submitted.</p>
68
 
            <p>You may resubmit a project again at any time until its deadline, but a new submission will overwrite any made earlier.</p>
 
75
            <p>You may resubmit a project again at any time, but a new submission will overwrite any made earlier, and submissions after the deadline may incur a penalty.</p>
69
76
            <p><input type="submit" value="Submit Project" />
70
77
              <a class="helpaction" href="/+help/Submitting%20a%20project">Help submitting a project</a>
71
78
            </p>