express-inventory-application/views/category.ejs
2023-09-09 18:47:17 -07:00

55 lines
1.5 KiB
Text

<!DOCTYPE html>
<html>
<head>
<title>Good Pickin's - <%= category.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"><%= category.name %></h1>
<p class="mb-0"><%= category.description %></p>
<div class="pb-4"></div>
<% items.forEach(item => { %>
<a
href="/<%= category.simpleName %>/<%= item._id %>"
type="button"
class="btn btn-outline-light px-4"
>
<%= item.name %> (<%= item.quantity %>)
</a>
<div class="pb-4"></div>
<% }) %>
<a
href="/<%= category.simpleName %>/createitem"
type="button"
class="btn btn-success px-4"
>
+ Create new item
</a>
<div class="pb-4"></div>
<a
href="/<%= category.simpleName %>/update"
type="button"
class="btn btn-primary px-4"
>
Edit this category
</a>
<div class="pb-4"></div>
<a
href="/<%= category.simpleName %>/delete"
type="button"
class="btn btn-danger px-4"
>
Delete this category
</a>
<div class="pb-5"></div>
</div>
<footer
class="position-fixed bottom-0 border-light border-top w-100 py-2 d-flex justify-content-center bg-dark"
>
<a href="/" type="button" class="btn btn-outline-light px-4 py-1">
Back to Home
</a>
</footer>
</body>
</html>