carisackc commited on
Commit
ac75df8
·
1 Parent(s): 79bd636

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -97,20 +97,22 @@ admissionid =col4.write(f"Admission ID: {HospitalAdmission} ")
97
  col1, col2, col3, col4 = st.columns(4)
98
  with col1:
99
  # st.button('Admission')
100
- st.button("🏥 Admission")
 
101
 
102
  with col2:
103
- st.button('📆Daily Narrative')
 
104
 
105
  with col3:
106
  st.button('Discharge Plan')
107
  with col4:
108
  st.button('📝Social Notes')
109
 
110
- if st.button("🏥 Admission"):
111
- nav_page("Admission")
112
- if st.button('📆Daily Narrative'):
113
- nav_page("Daily Narrative")
114
  #if st.button('Discharge Plan')
115
  #if st.button('📝Social Notes')
116
 
 
97
  col1, col2, col3, col4 = st.columns(4)
98
  with col1:
99
  # st.button('Admission')
100
+ if st.button("🏥 Admission")
101
+ nav_page('Admission')
102
 
103
  with col2:
104
+ if st.button('📆Daily Narrative')
105
+ nav_page('Daily Narrative')
106
 
107
  with col3:
108
  st.button('Discharge Plan')
109
  with col4:
110
  st.button('📝Social Notes')
111
 
112
+ #if st.button("🏥 Admission"):
113
+ # nav_page("Admission")
114
+ #if st.button('📆Daily Narrative'):
115
+ # nav_page("Daily Narrative")
116
  #if st.button('Discharge Plan')
117
  #if st.button('📝Social Notes')
118