|
|
|
import streamlit as st |
|
import streamlit.components.v1 as components |
|
|
|
|
|
html_code = """ |
|
<style> |
|
body { |
|
background-color: orange; |
|
} |
|
.sidebar .sidebar-content { |
|
background-color: blue; |
|
} |
|
</style> |
|
""" |
|
|
|
|
|
components.html(html_code, height=0) |
|
|
|
|
|
markdown_text = """ |
|
| Document Type | Description | Emoji | |
|
| :-------------: |:-------------:| :-----:| |
|
| [Allergies](https://github.com/HL7/C-CDA-Examples/tree/master/Allergies) | Documents relating to a patient's known allergies. | π€§ | |
|
| [Care Team](https://github.com/HL7/C-CDA-Examples/tree/master/Care%20Team) | Documentation of a patient's care team, including doctors, nurses, and other healthcare providers. | π©ββοΈπ¨ββοΈ | |
|
| [Encounters](https://github.com/HL7/C-CDA-Examples/tree/master/Encounters) | Records of a patient's encounters with healthcare providers. | π₯ | |
|
| [Family History](https://github.com/HL7/C-CDA-Examples/tree/master/Family%20History) | Information about the health of a patient's family, which can be relevant for understanding a patient's health risks. | πͺ | |
|
| [Functional Status](https://github.com/HL7/C-CDA-Examples/tree/master/Functional%20Status) | Information about a patient's functional status, including any disabilities or impairments. | πΆββοΈπΆββοΈ | |
|
| [Goals](https://github.com/HL7/C-CDA-Examples/tree/master/Goals) | Documentation of a patient's health goals. | π― | |
|
| [Health Concerns](https://github.com/HL7/C-CDA-Examples/tree/master/Health%20Concerns) | Documents containing information about a patient's health concerns, including any specific issues or conditions the patient is dealing with. | π | |
|
| [Immunizations](https://github.com/HL7/C-CDA-Examples/tree/master/Immunizations) | Records of a patient's immunizations. | π | |
|
| [Medications](https://github.com/HL7/C-CDA-Examples/tree/master/Medications) | Documentation of a patient's current and past medications. | π | |
|
| [Problems](https://github.com/HL7/C-CDA-Examples/tree/master/Problems) | Records of a patient's health problems. | π€ | |
|
""" |
|
|
|
|
|
st.sidebar.markdown("## Medical Document Types") |
|
st.sidebar.markdown(markdown_text) |
|
|