Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -87,12 +87,12 @@ if st.button("Найти совпадения"):
|
|
| 87 |
for result in matching_results:
|
| 88 |
st.markdown(
|
| 89 |
f"""
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
""",
|
| 97 |
unsafe_allow_html=True
|
| 98 |
)
|
|
|
|
| 87 |
for result in matching_results:
|
| 88 |
st.markdown(
|
| 89 |
f"""
|
| 90 |
+
<div style="border: 1px solid #ddd; padding: 10px; border-radius: 5px; margin-bottom: 10px;">
|
| 91 |
+
<h4 style="margin: 0;">{result['Name']}</h4>
|
| 92 |
+
<p><strong>Количество совпадающих навыков:</strong> {result['Matching Skills Count']}</p>
|
| 93 |
+
<p><strong>Совпадающие навыки:</strong><br>
|
| 94 |
+
{'<br>'.join(['\u2022 ' + skill for skill in result['Matching Skills']])}</p>
|
| 95 |
+
</div>
|
| 96 |
""",
|
| 97 |
unsafe_allow_html=True
|
| 98 |
)
|