annikwag commited on
Commit
e9b7c63
·
verified ·
1 Parent(s): 48b1a6a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -440,8 +440,9 @@ else:
440
  f"**Country:** {', '.join(matched_country)}<br>"
441
  f"**Sector:** {crs_combined}"
442
  )
443
- #if contact and contact.lower() != "transparenz@giz.de":
444
- # additional_text += f"<br>**Contact:** {contact}"
 
445
  st.divider()
446
 
447
  # --- Semantic Results Branch ---
@@ -511,7 +512,7 @@ else:
511
  f"**Country:** {', '.join(matched_country)}<br>"
512
  f"**Sector:** {crs_combined}"
513
  )
514
- #if contact and contact.lower() != "transparenz@giz.de":
515
- # additional_text += f"<br>Contact: **{contact}**"
516
  st.markdown(additional_text, unsafe_allow_html=True)
517
  st.divider()
 
440
  f"**Country:** {', '.join(matched_country)}<br>"
441
  f"**Sector:** {crs_combined}"
442
  )
443
+ if contact and contact.lower() != "transparenz@giz.de":
444
+ additional_text += f"<br>**Contact:** xxx@giz.de"
445
+ st.markdown(additional_text, unsafe_allow_html=True)
446
  st.divider()
447
 
448
  # --- Semantic Results Branch ---
 
512
  f"**Country:** {', '.join(matched_country)}<br>"
513
  f"**Sector:** {crs_combined}"
514
  )
515
+ if contact and contact.lower() != "transparenz@giz.de":
516
+ additional_text += f"<br>**Contact:** xxx@giz.de"
517
  st.markdown(additional_text, unsafe_allow_html=True)
518
  st.divider()