Files
medical_training/apps/cms/urls.py
T

19 lines
1.0 KiB
Python

from django.urls import path, include
from . import stats, training
# apps/cms 是 CMS 薄壳:聚合各领域 app 的 /api/cms/ 路由 + 跨领域看板(概览)。
# 机构管理已迁至 organization 域(apps/organization),在此聚合。
urlpatterns = [
path('', include('apps.organization.urls')), # 机构、科室
path('', include('apps.user.cms_urls')), # 用户
path('', include('apps.case.cms_urls')), # 病例库 + AI 病例生成
# 训练记录(CMS-TRN-1 超管全平台只读)
path('training-records/', training.training_records, name='cms-training-records'),
# 各角色概览大屏(第八章)
path('stats/overview/', stats.platform_overview, name='cms-stats-overview'),
path('stats/hospital/overview/', stats.hospital_overview, name='cms-stats-hospital-overview'),
path('stats/content/overview/', stats.content_overview, name='cms-stats-content-overview'),
path('stats/teaching/overview/', stats.teaching_overview, name='cms-stats-teaching-overview'),
]