KeshavRa commited on
Commit
e19c0bb
·
verified ·
1 Parent(s): 0063777

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
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