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

« back to all changes in this revision

Viewing changes to ivle/webapp/admin/templates/projectset-edit.html

  • Committer: David Coles
  • Date: 2010-07-27 04:52:14 UTC
  • Revision ID: coles.david@gmail.com-20100727045214-p32h1kc0gcv48dpr
Worksheets: Strip off whitespace from the end of exercise attempts.

This solves an issue where accidental whitespace in an attempt will cause 
"IndentationError" syntax error (which don't occur when run in console).

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
      xmlns:xi="http://www.w3.org/2001/XInclude">
 
4
  <head>
 
5
    <title>Edit project set</title>
 
6
  </head>
 
7
  <body>
 
8
    <h1>Edit project set</h1>
 
9
    <div py:with="submit_button_label = 'Save'"
 
10
         id="ivle_padding">
 
11
      <p>Projects in this set: ${', '.join(p.name for p in context.projects) or 'None'}</p>
 
12
      <xi:include href="projectset-form.html" />
 
13
    </div>
 
14
  </body>
 
15
</html>