Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -213,6 +213,13 @@ else:
|
|
213 |
shelter = shelters[st.session_state.shelter_index]
|
214 |
|
215 |
st.header(f"{shelter['Organization Name']}: {shelter['Program Name']}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
st.json(data)
|
217 |
st.table(shelters)
|
218 |
|
|
|
213 |
shelter = shelters[st.session_state.shelter_index]
|
214 |
|
215 |
st.header(f"{shelter['Organization Name']}: {shelter['Program Name']}")
|
216 |
+
|
217 |
+
with st.expander("About the Program"):
|
218 |
+
st.write(shelter['Program About'])
|
219 |
+
|
220 |
+
with st.expander("About the Organization"):
|
221 |
+
st.write(shelter['Organization About'])
|
222 |
+
|
223 |
st.json(data)
|
224 |
st.table(shelters)
|
225 |
|