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. |
---|
4 | from waeup.sirp.applicants.applicant import ( |
---|
5 | Applicant, ApplicantFactory, ApplicantImageStoreHandler, |
---|
6 | ApplicantImageNameChooser, |
---|
7 | ) |
---|
8 | from waeup.sirp.applicants.container import ApplicantsContainer |
---|
9 | from 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.