Spaces:
Running
Running
Update modules/ui/ui.py
Browse files- modules/ui/ui.py +4 -4
modules/ui/ui.py
CHANGED
|
@@ -196,7 +196,7 @@ def is_institutional_email(email):
|
|
| 196 |
return not any(domain in email.lower() for domain in forbidden_domains)
|
| 197 |
|
| 198 |
def display_videos_and_info(lang_code, t):
|
| 199 |
-
st.header("
|
| 200 |
|
| 201 |
videos = {
|
| 202 |
"Reel AIdeaText": "https://youtu.be/UA-md1VxaRc",
|
|
@@ -204,11 +204,11 @@ def display_videos_and_info(lang_code, t):
|
|
| 204 |
"Presentaci贸n en PyCon 2024. Colombia, Medell铆n": "https://www.youtube.com/watch?v=Jn545-IKx5Q",
|
| 205 |
"Presentaci贸n en la Fundaci贸n Ser Maaestro. Lima, Per煤": "https://www.youtube.com/watch?v=imc4TI1q164",
|
| 206 |
"Presentaci贸n en el programa de incubaci贸n Explora del IFE, TEC de Monterrey, Nuevo Le贸n, M茅xico": "https://www.youtube.com/watch?v=Fqi4Di_Rj_s",
|
| 207 |
-
"Entrevista con el Dr. Guillermo Ru铆z
|
| 208 |
-
"Demo de la versi贸n de escritorio.
|
| 209 |
}
|
| 210 |
|
| 211 |
-
selected_title = st.selectbox("Selecciona
|
| 212 |
|
| 213 |
if selected_title in videos:
|
| 214 |
try:
|
|
|
|
| 196 |
return not any(domain in email.lower() for domain in forbidden_domains)
|
| 197 |
|
| 198 |
def display_videos_and_info(lang_code, t):
|
| 199 |
+
st.header("Conferencias")
|
| 200 |
|
| 201 |
videos = {
|
| 202 |
"Reel AIdeaText": "https://youtu.be/UA-md1VxaRc",
|
|
|
|
| 204 |
"Presentaci贸n en PyCon 2024. Colombia, Medell铆n": "https://www.youtube.com/watch?v=Jn545-IKx5Q",
|
| 205 |
"Presentaci贸n en la Fundaci贸n Ser Maaestro. Lima, Per煤": "https://www.youtube.com/watch?v=imc4TI1q164",
|
| 206 |
"Presentaci贸n en el programa de incubaci贸n Explora del IFE, TEC de Monterrey, Nuevo Le贸n, M茅xico": "https://www.youtube.com/watch?v=Fqi4Di_Rj_s",
|
| 207 |
+
"Entrevista con el Dr. Guillermo Ru铆z. Lima, Per煤": "https://www.youtube.com/watch?v=_ch8cRja3oc",
|
| 208 |
+
"Demo de la versi贸n de escritorio.": "https://www.youtube.com/watch?v=nP6eXbog-ZY"
|
| 209 |
}
|
| 210 |
|
| 211 |
+
selected_title = st.selectbox("Selecciona una conferencia:", list(videos.keys()))
|
| 212 |
|
| 213 |
if selected_title in videos:
|
| 214 |
try:
|