Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -224,16 +224,18 @@ else:
|
|
224 |
st.divider()
|
225 |
|
226 |
with st.expander("More Information"):
|
227 |
-
|
|
|
|
|
228 |
st.write(shelter['Services'])
|
229 |
|
230 |
-
with
|
231 |
st.write(shelter['Program About'])
|
232 |
|
233 |
-
with
|
234 |
st.write(shelter['Organization About'])
|
235 |
|
236 |
-
with
|
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
|