Spaces:
Build error
Build error
Update app.py
Browse files
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 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
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 |
|