smc/grandham

View on GitHub
app/views/libraries/books.html.haml

Summary

Maintainability
Test Coverage
.row
  .col-md-8.col-offset-8
    %h4
      Books in library:
      = link_to @library.name, language_library_path(@library.language, @library)
    %br
      - @books.each do |book|
        = render partial: 'books/book', locals: { book: book }

      = will_paginate @books, renderer: BootstrapPagination::Rails