This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es" xmlns:th="http://www.thymeleaf.org" | |
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" | |
layout:decorate="master"> | |
<body> | |
<main layout:fragment="contenido"> | |
<div class="col-12"> | |
<h2>Productos</h2> | |
<div th:classappend="'alert-' + (${clase != null} ? ${clase} : info)" th:if="${mensaje != null}" | |
th:text="${mensaje}" | |
class="alert"> | |
</div> | |
<a class="btn btn-success mb-2" th:href="@{/productos/agregar}">Agregar</a> | |
<div class="table-responsive"> | |
<table class="table table-bordered"> | |
<thead> | |
<tr> | |
<th>Nombre</th> | |
<th>Código</th> | |
<th>Precio</th> | |
<th>Existencia</th> | |
<th>Editar</th> | |
<th>Eliminar</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr th:each="producto : ${productos}"> | |
<td th:text="${producto.nombre}"></td> | |
<td th:text="${producto.codigo}"></td> | |
<td th:text="${producto.precio}"></td> | |
<td th:text="${producto.existencia}"></td> | |
<td> | |
<a class="btn btn-warning" th:href="@{/productos/editar/} + ${producto.id}">Editar <i | |
class="fa fa-edit"></i></a> | |
</td> | |
<td> | |
<form th:action="@{/productos/eliminar}" method="post"> | |
<input type="hidden" name="id" th:value="${producto.id}"/> | |
<button type="submit" class="btn btn-danger">Eliminar <i class="fa fa-trash"></i> | |
</button> | |
</form> | |
</td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
</div> | |
</main> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment