-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmostrar.html
85 lines (82 loc) · 2.03 KB
/
mostrar.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"
xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
<head>
<title>Editar Votante</title>
<meta charset="UTF-8">
<link rel="stylesheet" th:href="@{/bootstrap-5.2.1-dist/Sprint3Style.css}">
<link rel="stylesheet" th:href="@{/bootstrap-5.2.1-dist/css/bootstrap.css}">
</head>
<body>
<br>
<div class="textClass" id="atRes">
<h2> Atributos del registro</h2>
</div>
<table id="mostvot" class="table table-striped">
<tr>
<td class="titulo">
<h5>Código</h5>
</td>
<td class="titulo">
<h5>Identificación</h5>
</td>
<td class="titulo">
<h5>Nombres y Apellidos</h5>
</td>
<td class="titulo">
<h5>FechaNac</h5>
</td>
<td class="titulo">
<h5>FechaExpCed</h5>
</td>
<td class="titulo">
<h5>LugarNac</h5>
</td>
<td class="titulo">
<h5>LugarRes</h5>
</td>
<td class="titulo">
<h5>Móvil</h5>
</td>
<td class="titulo">
<h5>Sexo</h5>
</td>
<td class="titulo">
<h5>Correo</h5>
</td>
</tr>
<tr>
<td class="textoTab">
<font th:text="${votante.codVotante}"></font>
</td>
<td class="textoTab">
<font th:text="${votante.identificacion}"></font>
</td>
<td class="textoTab">
<font th:text="${votante.nombres} + ' ' + ${votante.apellidos}"></font>
</td>
<td class="textoTab">
<font th:text=${votante.fechaNac}></font>
</td>
<td class="textoTab">
<font th:text=${votante.fechaExpCed}></font>
</td>
<td class="textoTab">
<font th:text=${votante.lugarNac}></font>
</td>
<td class="textoTab">
<font th:text=${votante.lugarRes}></font>
</td>
<td class="textoTab">
<font th:text=${votante.movil}></font>
</td>
<td class="textoTab">
<font th:text=${votante.sexo}></font>
</td>
<td class="textoTab">
<font th:text=${votante.correo}></font>
</td>
</tr>
</table>
</body>
</html>