Changeset 6072 for main/waeup.sirp
- Timestamp:
- 13 May 2011, 18:03:27 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/container.py
r6070 r6072 28 28 IApplicantsContainerProvider, 29 29 ) 30 from zope.schema.fieldproperty import FieldProperty30 from waeup.sirp.utils.helpers import attrs_to_fields 31 31 32 32 class ApplicantsContainer(grok.Container): … … 36 36 #grok.provides(IApplicantsContainer) 37 37 38 title = u'Simple applicants container'39 description = u'Simple container for regular applicants'40 startdate = None41 enddate = None42 strict_deadline = True43 provider = None44 code = None45 46 38 def archive(self, app_ids=None): 47 39 """Create on-dist archive of applicants stored in this term. … … 75 67 """ 76 68 raise NotImplemented() 77 69 70 ApplicantsContainer = attrs_to_fields(ApplicantsContainer) 71 78 72 class ApplicantsContainerProvider(grok.GlobalUtility): 79 73 """A utility that provides basic applicants containers.
Note: See TracChangeset for help on using the changeset viewer.