Ignore:
Timestamp:
23 Jun 2016, 05:08:41 (8 years ago)
Author:
Henrik Bettermann
Message:

Add first refereereports browser components.

File:
1 edited

Legend:

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

    r13975 r13976  
    635635    r_id = Attribute('Report identifier')
    636636
     637    creation_date = schema.Datetime(
     638        title = _(u'Ticket Creation Date'),
     639        readonly = False,
     640        required = False,
     641        )
     642
    637643    name = schema.TextLine(
    638644        title = _(u'Name'),
     
    642648    email = schema.ASCIILine(
    643649        title = _(u'Email Address'),
    644         required = False,
     650        required = True,
    645651        constraint=validate_email,
    646652        )
     
    656662        required = False,
    657663        )
    658 
    659     creation_date = schema.Datetime(
    660         title = _(u'Ticket Creation Date'),
    661         readonly = False,
    662         required = False,
    663         )
Note: See TracChangeset for help on using the changeset viewer.