2022-06-10 17:53:32 +02:00
|
|
|
from flask import Blueprint
|
2022-05-17 22:16:45 +02:00
|
|
|
|
2022-10-26 12:41:22 +02:00
|
|
|
from .examination_schedule import bp as examination_schedule_bp
|
2022-11-12 16:18:07 +01:00
|
|
|
# from .enrollments import bp as enrollments_bp
|
2022-10-27 19:53:39 +02:00
|
|
|
from .groups import bp as groups_bp
|
|
|
|
from .project_supervisor import bp as project_supervisor_bp
|
|
|
|
from .students import bp as students_bp
|
2022-11-12 16:18:07 +01:00
|
|
|
from .year_group import bp as year_group_bp
|
|
|
|
# from .workloads import bp as workloads_bp
|
2022-05-17 22:16:45 +02:00
|
|
|
|
2022-06-10 17:53:32 +02:00
|
|
|
bp = Blueprint("coordinator", __name__, url_prefix="/coordinator")
|
2022-05-17 22:16:45 +02:00
|
|
|
|
|
|
|
bp.register_blueprint(students_bp)
|
2022-06-13 18:41:28 +02:00
|
|
|
bp.register_blueprint(project_supervisor_bp)
|
2022-06-12 22:20:10 +02:00
|
|
|
bp.register_blueprint(groups_bp)
|
2022-11-12 16:18:07 +01:00
|
|
|
bp.register_blueprint(year_group_bp)
|
2022-10-26 12:41:22 +02:00
|
|
|
bp.register_blueprint(examination_schedule_bp)
|
2022-11-12 16:18:07 +01:00
|
|
|
# bp.register_blueprint(enrollments_bp)
|
|
|
|
# bp.register_blueprint(workloads_bp)
|