Spaces:
Sleeping
Sleeping
Update pages/__init__.py
Browse files- pages/__init__.py +38 -1
pages/__init__.py
CHANGED
|
@@ -1 +1,38 @@
|
|
| 1 |
-
# pages/__init__.py
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# pages/__init__.py
|
| 2 |
+
# This file makes the pages directory a Python package
|
| 3 |
+
|
| 4 |
+
from . import dashboard
|
| 5 |
+
from . import admin_management
|
| 6 |
+
from . import staff_management
|
| 7 |
+
from . import student_enrollment
|
| 8 |
+
from . import academic_calendar
|
| 9 |
+
from . import classroom_behavior
|
| 10 |
+
from . import student_decisions
|
| 11 |
+
from . import discipline_reports
|
| 12 |
+
from . import generate_reports
|
| 13 |
+
from . import report_design
|
| 14 |
+
from . import data_export
|
| 15 |
+
from . import performance_analytics
|
| 16 |
+
from . import visitation_day
|
| 17 |
+
from . import enter_results
|
| 18 |
+
from . import storage_management
|
| 19 |
+
from . import change_login
|
| 20 |
+
|
| 21 |
+
__all__ = [
|
| 22 |
+
'dashboard',
|
| 23 |
+
'admin_management',
|
| 24 |
+
'staff_management',
|
| 25 |
+
'student_enrollment',
|
| 26 |
+
'academic_calendar',
|
| 27 |
+
'classroom_behavior',
|
| 28 |
+
'student_decisions',
|
| 29 |
+
'discipline_reports',
|
| 30 |
+
'generate_reports',
|
| 31 |
+
'report_design',
|
| 32 |
+
'data_export',
|
| 33 |
+
'performance_analytics',
|
| 34 |
+
'visitation_day',
|
| 35 |
+
'enter_results',
|
| 36 |
+
'storage_management',
|
| 37 |
+
'change_login'
|
| 38 |
+
]
|