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

« back to all changes in this revision

Viewing changes to ivle/webapp/admin/subject.py

  • Committer: Matt Giuca
  • Date: 2010-02-25 08:54:25 UTC
  • Revision ID: matt.giuca@gmail.com-20100225085425-h34mw09m08dwgvnq
OfferingEdit: Worksheet cutoff is now allowed to be empty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
385
385
    description = formencode.validators.UnicodeString(
386
386
        if_missing=None, not_empty=False)
387
387
    url = formencode.validators.URL(if_missing=None, not_empty=False)
388
 
    worksheet_cutoff = DateTimeValidator(not_empty=True)
 
388
    worksheet_cutoff = DateTimeValidator(if_missing=None, not_empty=False)
389
389
    show_worksheet_marks = formencode.validators.StringBoolean(
390
390
        if_missing=False)
391
391