<% if(message) { %>
<% } %>

Checked Out by <%= name %> (<%= username %>)

<% if (user.checkout.length === 0) { %>

No Books Checked Out

<% } else { %>
<% user.checkout.forEach((book, index) => { %> <% }); %>
ID Name Author Year Genre ISBN ISBN10 Actions
<%= 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