Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -229,7 +229,7 @@ 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
|
233 |
st.markdown(f"- **📞\tPhone Number**: {phone}", unsafe_allow_html=True)
|
234 |
st.divider()
|
235 |
|
|
|
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 |
|