carisackc commited on
Commit
8a87f20
1 Parent(s): eca3574

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -14
app.py CHANGED
@@ -103,20 +103,20 @@ reference_text = original_text['Reference_text'].values
103
  ##========= Buttons to the 4 tabs ========
104
  col1, col2, col3, col4 = st.columns(4)
105
 
106
- #with col1:
107
- # st.button("🏥 Admission")
108
- # #nav_page('Admission')
109
- #
110
- #with col2:
111
- # st.button('📆Daily Narrative')
112
- # #nav_page('Daily Narrative')
113
- #
114
- #with col3:
115
- # st.button('Discharge Plan')
116
- # #nav_page('Discharge Plan')
117
- #with col4:
118
- # st.button('📝Social Notes')
119
- # #nav_page('Social Notes')
120
 
121
 
122
 
 
103
  ##========= Buttons to the 4 tabs ========
104
  col1, col2, col3, col4 = st.columns(4)
105
 
106
+ with col1:
107
+ st.button("🏥 Admission")
108
+ #nav_page('Admission')
109
+
110
+ with col2:
111
+ st.button('📆Daily Narrative')
112
+ #nav_page('Daily Narrative')
113
+
114
+ with col3:
115
+ st.button('Discharge Plan')
116
+ #nav_page('Discharge Plan')
117
+ with col4:
118
+ st.button('📝Social Notes')
119
+ #nav_page('Social Notes')
120
 
121
 
122