Ignore:
Timestamp:
25 Jan 2023, 08:52:51 (2 years ago)
Author:
Henrik Bettermann
Message:

Allow beds to be blocked so that no student can be allocated to such a bed space (in contrast to reserved beds)

Location:
main/waeup.kofa/trunk/src/waeup/kofa/students
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/students/__init__.py

    r7811 r17313  
    1 """This package contains everything regarding students.
    2 """
    31# Make this a package.
    4 from waeup.kofa.students.student import (
    5     Student, StudentFactory
    6     )
    7 from waeup.kofa.students.container import StudentsContainer
    8 from waeup.kofa.students.studycourse import StudentStudyCourse
    9 from waeup.kofa.students.payments import StudentPaymentsContainer
    10 from waeup.kofa.students.accommodation import StudentAccommodation
    11 from 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     ]
  • main/waeup.kofa/trunk/src/waeup/kofa/students/tests/test_dynamicroles.py

    r10639 r17313  
    2727from waeup.kofa.app import University
    2828from waeup.kofa.students.tests.test_browser import StudentsFullSetup
    29 from waeup.kofa.students import Student, StudentPrincipalRoleManager
     29from waeup.kofa.students.student import Student
     30from waeup.kofa.students.dynamicroles import StudentPrincipalRoleManager
    3031
    3132class StudentPrincipalRoleManagerTests(APRMTest):
Note: See TracChangeset for help on using the changeset viewer.