... |
... |
@@ -27,8 +27,8 @@ |
27 |
27 |
background-color: #f1f1f1; |
28 |
28 |
} |
29 |
29 |
img { |
30 |
|
- width: 111px; /* Ajusta el ancho de la imagen */ |
31 |
|
- height: 151px; /* Ajusta la altura de la imagen */ |
|
30 |
+ width: 50px; /* Ajusta el ancho de la imagen */ |
|
31 |
+ height: 25px; /* Ajusta la altura de la imagen */ |
32 |
32 |
object-fit: cover; /* Mantiene la relación de aspecto y recorta si es necesario */ |
33 |
33 |
} |
34 |
34 |
</style> |
... |
... |
@@ -35,6 +35,7 @@ |
35 |
35 |
<table> |
36 |
36 |
<thead> |
37 |
37 |
<tr> |
|
38 |
+ <th>ID</th> |
38 |
38 |
<th>TITULO</th> |
39 |
39 |
<th>SISTEMA</th> |
40 |
40 |
<th>COMPLETADO</th> |
... |
... |
@@ -48,10 +48,11 @@ |
48 |
48 |
db.eachRow('SELECT * FROM games_list') { row -> |
49 |
49 |
table += """ |
50 |
50 |
<tr> |
|
52 |
+ <td>${row.id}</td> |
51 |
51 |
<td>${row.titulo}</td> |
52 |
52 |
<td>${row.sistema}</td> |
53 |
53 |
<td>${row.estado}</td> |
54 |
|
- <td><img src='/images_wiki/${row.caratula}' style='width: 112px; height: 154px;'/></td> |
|
56 |
+ <td><img src='/images_wiki/${row.caratula}' style='width: 100px; height: 125px;'/></td> |
55 |
55 |
</tr> |
56 |
56 |
""" |
57 |
57 |
} |