Last change
on this file since 6797 was
6632,
checked in by Henrik Bettermann, 13 years ago
|
Rename applicants.py, accesscodes.py and students.py modules. Their names should be singular like in the university package.
|
File size:
591 bytes
|
Line | |
---|
1 | """This package contains everything regarding university applicants. |
---|
2 | """ |
---|
3 | # Make this a package. |
---|
4 | from waeup.sirp.applicants.applicant import ( |
---|
5 | ResultEntry, Applicant, ApplicantFactory, ApplicantTraverser, |
---|
6 | ) |
---|
7 | from waeup.sirp.applicants.container import ApplicantsContainer |
---|
8 | from waeup.sirp.applicants.root import ( |
---|
9 | ApplicantsRoot, get_applicant_data, application_exists, |
---|
10 | ) |
---|
11 | |
---|
12 | __all__ = [ |
---|
13 | 'ResultEntry', |
---|
14 | 'Applicant', |
---|
15 | 'ApplicantFactory', |
---|
16 | 'ApplicantsContainer', |
---|
17 | 'ApplicantsRoot', |
---|
18 | 'ApplicantTraverser', |
---|
19 | 'application_exists', |
---|
20 | 'get_applicant_data', |
---|
21 | ] |
---|
Note: See
TracBrowser for help on using the repository browser.