<% if(message) { %>
<%= message %>
<% } %>
Checked Out by <%= name %> (<%= username %>)
<% if (user.checkout.length === 0) { %>
No Books Checked Out
<% } else { %>
ID
Name
Author
Year
Genre
ISBN
ISBN10
Actions
<% user.checkout.forEach((book, index) => { %>
<%= index + 1 %>
<%= books.get(book).name %>
<%= books.get(book).author %>
<%= books.get(book).year %>
<%= books.get(book).genre %>
<%= books.get(book).ISBN %>
<%= books.get(book).ISBN10 %>
Force Return
<% }); %>
<% } %>
Home
Dashboard