41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
<%@ page contentType="text/html; charset=UTF-8" language="java" %>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Computer List</title>
|
|
</head>
|
|
<body>
|
|
<h1>Computer List</h1>
|
|
<table border="1">
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Name</th>
|
|
<th>Price</th>
|
|
<th>Stock</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<c:forEach var="computer" items="${computers}">
|
|
<tr>
|
|
<td>${computer.id}</td>
|
|
<td>${computer.name}</td>
|
|
<td>${computer.price}</td>
|
|
<td>${computer.stock}</td>
|
|
<td>
|
|
<a href="/editComputer?id=${computer.id}">Edit</a> |
|
|
<a href="/deleteComputer?id=${computer.id}">Delete</a>
|
|
</td>
|
|
</tr>
|
|
</c:forEach>
|
|
</tbody>
|
|
</table>
|
|
<br/>
|
|
<a href="/addComputer">Add New Computer</a>
|
|
</body>
|
|
</html>
|