AIdeaText commited on
Commit
a010701
1 Parent(s): 14cec57

Update modules/ui/ui.py

Browse files
Files changed (1) hide show
  1. 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("Videos: pitch, demos, entrevistas, otros")
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". 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 un video tutorial:", list(videos.keys()))
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: