Book Details

Title <%= @book.title %>
Genre <%= @book.genre %>
Sub Genre <%= @book.sub_genre %>
Author <%= @book.author %>
Pages <%= @book.pages %>
Total Copies <%= @book.copies %>
Available Copies <%= @book.available_copies %>

Check out Status

<% @book.users_books.each_with_index do |user_book, index| %> <% end %>
# Book copy code Status Email Borrow date Expected Return date Actual Returned Date
<%= index + 1 %> <%= user_book.identifier %> <%= user_book.status %> <%= user_book.user.email %> <%= decorate_date(user_book.created_at) %> <%= decorate_date(user_book.due_date) %> <%= decorate_date(user_book.returned_at) %>