Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -48,13 +48,13 @@ patientid = col3.write(f"Patient ID: {patient} ")
|
|
48 |
admissionid =col4.write(f"Admission ID: {HospitalAdmission} ")
|
49 |
|
50 |
col1, col2, col3, col4 = st.columns(4)
|
51 |
-
with col1
|
52 |
st.button('Admission')
|
53 |
-
with col2
|
54 |
st.button('Daily Narrative')
|
55 |
-
with col3
|
56 |
st.button('Discharge Plan')
|
57 |
-
with col4
|
58 |
st.button('Social Notes')
|
59 |
#_min_length = col1.number_input("Minimum Length", value=_min_length)
|
60 |
#_max_length = col2.number_input("Maximun Length", value=_max_length)
|
|
|
48 |
admissionid =col4.write(f"Admission ID: {HospitalAdmission} ")
|
49 |
|
50 |
col1, col2, col3, col4 = st.columns(4)
|
51 |
+
with col1:
|
52 |
st.button('Admission')
|
53 |
+
with col2:
|
54 |
st.button('Daily Narrative')
|
55 |
+
with col3:
|
56 |
st.button('Discharge Plan')
|
57 |
+
with col4:
|
58 |
st.button('Social Notes')
|
59 |
#_min_length = col1.number_input("Minimum Length", value=_min_length)
|
60 |
#_max_length = col2.number_input("Maximun Length", value=_max_length)
|