- Timestamp:
- 10 Jun 2011, 15:41:32 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/applicants.py
r6332 r6339 27 27 from zope.schema.fieldproperty import FieldProperty 28 28 from hurry.workflow.interfaces import IWorkflowInfo, IWorkflowState 29 from waeup.sirp.interfaces import IWAeUPSIRPPluggable 29 from waeup.sirp.interfaces import IWAeUPSIRPPluggable, IObjectHistory 30 30 from waeup.sirp.app import University 31 31 from waeup.sirp.applicants.interfaces import ( … … 54 54 state = IWorkflowState(self).getState() 55 55 return state 56 57 @property 58 def history(self): 59 history = IObjectHistory(self) 60 return history 56 61 57 62 # Set all attributes of Applicant required in IApplicant as field
Note: See TracChangeset for help on using the changeset viewer.