Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -47,10 +47,10 @@ elif st.session_state["scene"] == 2:
|
|
47 |
st.write("The patient is stable for now. What would you like to do?")
|
48 |
choice = st.radio(
|
49 |
"Choose your next step:",
|
50 |
-
["Select an option", "Observe and
|
51 |
)
|
52 |
|
53 |
-
if choice == "Observe and
|
54 |
st.write("Monitoring the patient... Please wait.")
|
55 |
time.sleep(5) # Simulate waiting
|
56 |
if st.session_state["pain_increase"]:
|
|
|
47 |
st.write("The patient is stable for now. What would you like to do?")
|
48 |
choice = st.radio(
|
49 |
"Choose your next step:",
|
50 |
+
["Select an option", "Observe and Monitor", "Repeat Exam", "Measure Compartment Pressure"]
|
51 |
)
|
52 |
|
53 |
+
if choice == "Observe and Monitor":
|
54 |
st.write("Monitoring the patient... Please wait.")
|
55 |
time.sleep(5) # Simulate waiting
|
56 |
if st.session_state["pain_increase"]:
|