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

Update templates/pdf_casa_comercial.html

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