Ignore:
Timestamp:
16 Apr 2012, 22:24:59 (12 years ago)
Author:
Henrik Bettermann
Message:

Use FormattedDate?.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.uniben/trunk/src/waeup/uniben/applicants/interfaces.py

    r8101 r8184  
    2525from waeup.kofa.schoolgrades import ResultEntryField
    2626from waeup.kofa.interfaces import SimpleKofaVocabulary
     27from waeup.kofa.schema import FormattedDate
    2728from waeup.kofa.students.vocabularies import nats_vocab
    2829from waeup.uniben.interfaces import (
    2930    lgas_vocab, high_qual, high_grade, exam_types)
    3031from waeup.uniben.interfaces import MessageFactory as _
     32
    3133
    3234class IUGApplicant(IApplicantBaseData):
     
    150152        readonly = False,
    151153        )
    152     emp_start = schema.Date(
     154    emp_start = FormattedDate(
    153155        title = _(u'Start Date'),
    154156        required = False,
    155157        readonly = False,
    156158        )
    157     emp_end = schema.Date(
     159    emp_end = FormattedDate(
    158160        title = _(u'End Date'),
    159161        required = False,
     
    175177        readonly = False,
    176178        )
    177     emp2_start = schema.Date(
     179    emp2_start = FormattedDate(
    178180        title = _(u'Start Date'),
    179181        required = False,
    180182        readonly = False,
    181183        )
    182     emp2_end = schema.Date(
     184    emp2_end = FormattedDate(
    183185        title = _(u'End Date'),
    184186        required = False,
Note: See TracChangeset for help on using the changeset viewer.