express-inventory-application/views/item.ejs

37 lines
1.1 KiB
Text

<!DOCTYPE html>
<html>
<head>
<title>Good Pickin's - <%= item.name %></title>
<link rel="stylesheet" href="/styles/css/bootstrap.min.css" />
</head>
<body class="bg-dark text-light">
<div class="d-flex flex-column py-4 px-4 align-items-center">
<h1 class="mb-0"><%= item.name %></h1>
<p><%= item.description %></p>
<p class="mb-0"><%= item.quantity %> available at $<%= item.price %></p>
<div class="pb-4"></div>
<a
href="/<%= category.simpleName %>/<%= item._id %>/update"
type="button"
class="btn btn-outline-light px-4"
>
Edit this item
</a>
<div class="pb-4"></div>
<a
href="/<%= category.simpleName %>/<%= item._id %>/delete"
type="button"
class="btn btn-danger px-4"
>
Delete this item
</a>
</div>
<footer
class="position-fixed bottom-0 border-light border-top w-100 py-2 d-flex justify-content-center"
>
<a href="/" type="button" class="btn btn-outline-light px-4 py-1">
Back to Home
</a>
</footer>
</body>
</html>