LeireTedCas commited on
Commit
32e0405
1 Parent(s): fb8ac84

Update templates/videos.html

Browse files
Files changed (1) hide show
  1. templates/videos.html +10 -17
templates/videos.html CHANGED
@@ -17,23 +17,16 @@
17
  <br>
18
 
19
 
20
-
21
- {% for titulo1,pdfs in titulos.items() %}
22
- <br>
23
- <strong style="font-size: 1.4rem;font-family: Arial, Helvetica, sans-serif;">{{titulo1}} :</strong>
24
- <select style="font-size: 1.2rem;font-family: Arial, Helvetica, sans-serif;" id="mySelect" onchange="window.location.href=this.value;">
25
-
26
- <option value="">Seleccionar</option>
27
-
28
- {% for titulo2,url in pdfs.items() %}
29
- <option value="{{url}}" >{{titulo2}}</option>
30
-
31
-
32
-
33
- {% endfor %}
34
-
35
-
36
- </select>
37
 
38
  <br>
39
  <br>
 
17
  <br>
18
 
19
 
20
+ {% for titulo1, pdfs in titulos.items() %}
21
+ <br>
22
+ <strong style="font-size: 1.4rem;font-family: Arial, Helvetica, sans-serif;">{{ titulo1 }} :</strong>
23
+
24
+ {% for titulo2, url in pdfs.items() %}
25
+ <div style="font-size: 1.2rem; font-family: Arial, Helvetica, sans-serif;">
26
+ <a href="{{ url }}">{{ titulo2 }}</a>
27
+ </div>
28
+ {% endfor %}
29
+
 
 
 
 
 
 
 
30
 
31
  <br>
32
  <br>