Ignore:
Timestamp:
14 Dec 2013, 08:16:52 (11 years ago)
Author:
Henrik Bettermann
Message:

Jason is requesting customization of registration number field. This can't be done with the IApplicantBaseData based interfaces. It requires a new interface ISpecialApplicant.

Attention: The changes here are not yet compatible with the custom packages. Do not checkout!

File:
1 edited

Legend:

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

    r10831 r10845  
    3838from waeup.kofa.students.studycourse import StudentStudyCourse
    3939from waeup.kofa.utils.helpers import attrs_to_fields
    40 from waeup.kofa.applicants.interfaces import IApplicant, IApplicantEdit
     40from waeup.kofa.applicants.interfaces import (
     41    IApplicant, IApplicantEdit, ISpecialApplicant)
    4142from waeup.kofa.applicants.workflow import application_states_dict
    4243
     
    5152
    5253class Applicant(grok.Container):
    53     grok.implements(IApplicant,IApplicantEdit)
     54    grok.implements(IApplicant, IApplicantEdit, ISpecialApplicant)
    5455    grok.provides(IApplicant)
    5556
Note: See TracChangeset for help on using the changeset viewer.