KeshavRa commited on
Commit
005be17
·
verified ·
1 Parent(s): 923c12e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -229,8 +229,11 @@ else:
229
  st.write(shelter['Application Details'])
230
  st.markdown(f"- **🕒\tOpen Hours**: {shelter['Open Hours']}")
231
  st.markdown(f"- **📍\tAddress**: {shelter['Address']}")
232
- phone = f"<a href='tel:{shelter['Phone']}'>{shelter['Phone']}</a>"
233
- st.markdown(f"- **📞\tPhone Number**: {phone}", unsafe_allow_html=True)
 
 
 
234
  st.divider()
235
 
236
  with st.expander("More Information"):
 
229
  st.write(shelter['Application Details'])
230
  st.markdown(f"- **🕒\tOpen Hours**: {shelter['Open Hours']}")
231
  st.markdown(f"- **📍\tAddress**: {shelter['Address']}")
232
+
233
+ phone_number = shelter['Phone']
234
+ print(phone_number)
235
+ phone_link = f"<a href='tel:{phone_number}'>hi</a>"
236
+ st.markdown(f"- **📞\tPhone Number**: {phone_link}", unsafe_allow_html=True)
237
  st.divider()
238
 
239
  with st.expander("More Information"):