Changeset 5269 for main


Ignore:
Timestamp:
16 Jul 2010, 16:23:06 (14 years ago)
Author:
uli
Message:
  • Fix syntax errors.
  • Add Applicant container.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/branches/ulif-fasttables/src/waeup/sirp/jambtables/interfaces.py

    r5268 r5269  
    295295        # XXX: should be choice
    296296        # XXX: should have sensible default: upcoming session
    297         title = u 'Entry Session',
     297        title = u'Entry Session',
    298298        required = True,
    299299        )
     
    301301        title = u'Notice',
    302302        required = False,
    303         ),
    304     student_id = schema.TexLine(
     303        )
     304    student_id = schema.TextLine(
    305305        title = u'Student ID',
    306306        required = False,
     
    312312        title = u'Imported By',
    313313        )
    314     import_date = schema.DateTime(
     314    import_date = schema.Datetime(
    315315        title = u'Import Date',
    316316        )
     
    318318        title = u'Import Source',
    319319        )
     320
     321class IApplicantContainer(IWAeUPObject):
     322    """A container for applicants.
     323    """
Note: See TracChangeset for help on using the changeset viewer.