KeshavRa commited on
Commit
df10d63
·
verified ·
1 Parent(s): 9652bfc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -224,16 +224,18 @@ else:
224
  st.divider()
225
 
226
  with st.expander("More Information"):
227
- with st.expander("Full List of Services"):
 
 
228
  st.write(shelter['Services'])
229
 
230
- with st.expander("More About the Program"):
231
  st.write(shelter['Program About'])
232
 
233
- with st.expander("More About the Organization"):
234
  st.write(shelter['Organization About'])
235
 
236
- with st.expander("Webpage Link"):
237
  st.write(shelter['Webpage'])
238
 
239
  # Create two columns
 
224
  st.divider()
225
 
226
  with st.expander("More Information"):
227
+ tabs = st.tabs(["Full List of Services", "More About the Program", "More About the Organization", "Webpage Link"])
228
+
229
+ with tabs[0]:
230
  st.write(shelter['Services'])
231
 
232
+ with tabs[1]:
233
  st.write(shelter['Program About'])
234
 
235
+ with tabs[2]:
236
  st.write(shelter['Organization About'])
237
 
238
+ with tabs[3]:
239
  st.write(shelter['Webpage'])
240
 
241
  # Create two columns