source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/__init__.py @ 7341

Last change on this file since 7341 was 7341, checked in by Henrik Bettermann, 13 years ago

Do not store a reference to a certificate but a dictionary with the code, title, department title and faculty title of certificates. In this way we can preserve the information even if the certificate has been removed.

The assignment of dynamic roles is not necessary in the application section. We can assign local roles in applicants containers. That's sufficient.

  • Property svn:keywords set to Id
File size: 662 bytes
Line 
1"""This package contains everything regarding university applicants.
2"""
3# Make this a package.
4from waeup.sirp.applicants.applicant import (
5    Applicant, ApplicantFactory, ApplicantImageStoreHandler,
6    ApplicantImageNameChooser,
7    )
8from waeup.sirp.applicants.container import ApplicantsContainer
9from waeup.sirp.applicants.root import (
10    ApplicantsRoot, get_applicant_data, application_exists,
11    )
12
13__all__ = [
14    'Applicant',
15    'ApplicantFactory',
16    'ApplicantImageNameChooser',
17    'ApplicantImageStoreHandler',
18    'ApplicantsContainer',
19    'ApplicantsRoot',
20    'application_exists',
21    'get_applicant_data',
22    'get_regno_or_ac',
23    ]
Note: See TracBrowser for help on using the repository browser.