Ignore:
Timestamp:
25 Jul 2012, 21:39:01 (12 years ago)
Author:
Henrik Bettermann
Message:

We do not need screening fields in base package.

Location:
main/waeup.kofa/trunk/src/waeup/kofa/applicants
Files:
3 edited

Legend:

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

    r8983 r9047  
    881881    form_fields = grok.AutoFields(IApplicantEdit).omit(
    882882        'locked', 'course_admitted', 'student_id',
    883         'screening_score', 'suspended'
     883        'suspended'
    884884        )
    885885    form_fields['applicant_id'].for_display = True
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/interfaces.py

    r9035 r9047  
    398398        required = False,
    399399        )
    400     screening_venue = schema.TextLine(
    401         title = _(u'Screening Venue'),
    402         required = False,
    403         )
    404     screening_score = schema.Int(
    405         title = _(u'Screening Score'),
    406         description = _(u'Describe Score here.'),
    407         required = False,
    408         )
    409400    student_id = schema.TextLine(
    410401        title = _(u'Student Id'),
     
    466457        required = False,
    467458        )
    468     screening_score = schema.Int(
    469         title = _(u'Screening Score'),
    470         required = False,
    471         readonly = True,
    472         )
    473     screening_venue = schema.TextLine(
    474         title = _(u'Screening Venue'),
    475         required = False,
    476         readonly = True,
    477         )
    478459    course_admitted = schema.Choice(
    479460        title = _(u'Admitted Course of Study'),
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/utils.py

    r8884 r9047  
    3939    SEPARATORS_DICT = {
    4040      'form.course1': _(u'Desired Study Courses'),
    41       'form.screening_score': _(u'Process Data'),
     41      'form.student_id': _(u'Process Data'),
    4242      }
    4343
Note: See TracChangeset for help on using the changeset viewer.