2025-03-21 22:08:47 +00:00
|
|
|
<!DOCTYPE html>
|
2025-04-04 21:55:58 +00:00
|
|
|
<html lang="en">
|
2025-03-21 22:08:47 +00:00
|
|
|
|
|
|
|
|
<head>
|
2025-04-04 21:55:58 +00:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>Detalle del Nombre</title>
|
2025-03-21 22:08:47 +00:00
|
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
2025-04-04 21:55:58 +00:00
|
|
|
<h1>Detalle del Nombre</h1>
|
|
|
|
|
|
|
|
|
|
{{ if . }}
|
2025-03-21 22:21:00 +00:00
|
|
|
<table>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr>
|
2025-04-04 21:55:58 +00:00
|
|
|
<th>Nombre:</th>
|
|
|
|
|
<td>{{ .Nombre.Nombre }}</td>
|
2025-03-21 22:21:00 +00:00
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2025-04-04 21:55:58 +00:00
|
|
|
<th>Familia:</th>
|
|
|
|
|
<td>{{ .FamiliaName }}</td>
|
2025-03-21 22:21:00 +00:00
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2025-04-04 21:55:58 +00:00
|
|
|
<th>Fecha:</th>
|
|
|
|
|
<td>{{ .Nombre.Fecha }}</td>
|
2025-03-21 22:21:00 +00:00
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2025-04-04 21:55:58 +00:00
|
|
|
<th>Proveedor:</th>
|
|
|
|
|
<td>{{ .ProveedorName }}</td>
|
2025-03-21 22:21:00 +00:00
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2025-04-04 21:55:58 +00:00
|
|
|
<th>Precio:</th>
|
|
|
|
|
<td>{{ .Nombre.Precio }}</td>
|
2025-03-21 22:21:00 +00:00
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2025-04-04 21:55:58 +00:00
|
|
|
<th>Inactivo:</th>
|
|
|
|
|
<td>{{ .Nombre.Inactivo }}</td>
|
2025-03-21 22:21:00 +00:00
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
2025-04-04 21:55:58 +00:00
|
|
|
<p><a href="/nombres/html/edit/{{ .Nombre.NombreID }}">Editar</a> | <a href="/nombres/html">Volver</a></p>
|
|
|
|
|
{{ else }}
|
|
|
|
|
<p>Nombre no encontrado.</p>
|
|
|
|
|
{{ end }}
|
2025-03-21 22:08:47 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|