carisackc commited on
Commit
9b3c97d
1 Parent(s): 09ba6ac

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -10
app.py CHANGED
@@ -93,8 +93,9 @@ diagnosis =original_text['DIAGNOSIS'].values
93
  reference_text = original_text['Reference_text'].values
94
 
95
 
96
- ##========= Buttons to the 4 tabs ========
97
- col1, col2, col3, col4, col5 = st.columns([1,1,1,1,1])
 
98
  col6, col7, col8 =st.columns([2,2,2])
99
  with st.container():
100
  with col1:
@@ -106,14 +107,14 @@ with st.container():
106
  btnDailyNarrative = st.button('📆Daily Narrative')
107
  if btnDailyNarrative:
108
  inputNote = "Input Daily Narrative Note"
109
- with col3:
110
- btnDischargePlan = st.button('🗒️Discharge Plan')
111
- if btnDischargePlan:
112
- inputNote = "Input Discharge Plan"
113
- with col4:
114
- btnSocialNotes = st.button('📝Social Notes')
115
- if btnSocialNotes:
116
- inputNote = "Input Social Note"
117
  with col5:
118
  btnPastHistory = st.button('📇Past History (6 Mths)')
119
  if btnPastHistory:
 
93
  reference_text = original_text['Reference_text'].values
94
 
95
 
96
+ ##========= Buttons to the 5 tabs ======== Temp disabled Discharge Plan and Social Notes
97
+ ##col1, col2, col3, col4, col5 = st.columns([1,1,1,1,1]) -- to uncomment and comment below line to include discharge plan and social notes
98
+ col1, col2, col5 = st.columns([1,1,1])
99
  col6, col7, col8 =st.columns([2,2,2])
100
  with st.container():
101
  with col1:
 
107
  btnDailyNarrative = st.button('📆Daily Narrative')
108
  if btnDailyNarrative:
109
  inputNote = "Input Daily Narrative Note"
110
+ # with col3:
111
+ # btnDischargePlan = st.button('🗒️Discharge Plan')
112
+ # if btnDischargePlan:
113
+ # inputNote = "Input Discharge Plan"
114
+ # with col4:
115
+ # btnSocialNotes = st.button('📝Social Notes')
116
+ # if btnSocialNotes:
117
+ # inputNote = "Input Social Note"
118
  with col5:
119
  btnPastHistory = st.button('📇Past History (6 Mths)')
120
  if btnPastHistory: