Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -440,8 +440,9 @@ else:
|
|
440 |
f"**Country:** {', '.join(matched_country)}<br>"
|
441 |
f"**Sector:** {crs_combined}"
|
442 |
)
|
443 |
-
|
444 |
-
|
|
|
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 |
-
|
515 |
-
|
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()
|