| import streamlit as st |
|
|
|
|
| hello_page = st.Page("page/hello.py", title="Bienvenue !", icon="👋") |
| intox_page = st.Page("page/intox.py", title="Intox CIM-10", icon="☠️") |
| ctxt_page = st.Page("page/ctxt.py", title="Contexte patient", icon="😷") |
| acte_page = st.Page("page/acte.py", title="Actes CCAM", icon="🩺") |
| bacteries_page = st.Page("page/bacteries.py", title="Bactéries CIM-10", icon="🦠") |
|
|
| pg = st.navigation( |
| { |
| "PMSI+": [hello_page], |
| "CIM-10": [intox_page, bacteries_page], |
| "CCAM": [], |
| "HDJ": [acte_page, ctxt_page], |
| } |
| ) |
|
|
| st.set_page_config(page_title="PMSI+", page_icon="📚", layout="wide") |
| pg.run() |