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

« back to all changes in this revision

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

  • Committer: Matt Giuca
  • Date: 2009-04-07 10:18:19 UTC
  • Revision ID: matt.giuca@gmail.com-20090407101819-phw3dq5f60h5totx
submit: Added link to Project URL on the project's name.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
              <li py:for="project in principal.get_projects(offering=offering)"
30
30
                  py:with="attrs = {'disabled': 'disabled'} if project.deadline &lt; now else {}">
31
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>
 
32
                <label for="project_${project.id}"><a href="${project.url}">${project.name}</a> - <em>${project.synopsis}</em> - (due ${format_datetime(project.deadline)})</label>
33
33
              </li>
34
34
            </ul>
35
35
            <p>Ensure that you have committed all changes - only changes in the repository will be submitted.</p>