source: main/waeup.kofa/trunk/src/waeup/kofa/students/__init__.py @ 9258

Last change on this file since 9258 was 7811, checked in by uli, 13 years ago

Rename all non-locales stuff from sirp to kofa.

  • Property svn:keywords set to Id
File size: 691 bytes
Line 
1"""This package contains everything regarding students.
2"""
3# Make this a package.
4from waeup.kofa.students.student import (
5    Student, StudentFactory
6    )
7from waeup.kofa.students.container import StudentsContainer
8from waeup.kofa.students.studycourse import StudentStudyCourse
9from waeup.kofa.students.payments import StudentPaymentsContainer
10from waeup.kofa.students.accommodation import StudentAccommodation
11from waeup.kofa.students.dynamicroles import StudentPrincipalRoleManager
12
13
14__all__ = [
15    'Student',
16    'StudentFactory',
17    'StudentsContainer',
18    'StudentStudyCourse',
19    'StudentPaymentsContainer',
20    'StudentAccommodation',
21    'StudentPrincipalRoleManager',
22    ]
Note: See TracBrowser for help on using the repository browser.