How this page is built
the gem renders it — this is all you write
A full table — search, an inline filter row, sortable columns and row actions — all derived from the model. This page toggles between the curated :index and the fuller :catalog fieldset (currently :index). Your controller assigns @books — scope it for authorization (e.g. Book.accessible_by(current_ability)) and the gem renders that scope.
app/models/book.rb
crud_structure do
attribute :price, as: :number, unit: '€', digits: 2
fieldset :index, %i[cover title author_names genre price publisher active]
fieldset :catalog, %i[cover title subtitle author_names genre price purchase_price
shop_margin pages published_on publisher reviews active manual created_at]
end
app/views/books/index.html.erb
<%= crud_collection @books, fieldset: :index %> <%# search, filters, sort, actions %>
<%= crud_filter Book, fieldset: :index %> <%# filter sidebar (takes the model, not a scope) %>
Read more: Fields & cells · Views & fieldsets
| Cover | Title | Author names | Genre | Price | Publisher | Active | ||
|---|---|---|---|---|---|---|---|---|
|
|
||||||||
![]() |
The Hidden Garden 16 | Joe Abercrombie, Ted Chiang, and Becky Chambers | Fiction | 30.44 € | Tor Books | ✓ | ||
![]() |
The Quiet Machine 31 | Margaret Atwood | Fiction | 21.83 € | Tor Books | ✓ | ||
![]() |
The Ancient Engine 32 | Octavia Butler | Fiction | 33.11 € | Tor Books | ✓ | ||
![]() |
The Endless Station 47 | Joe Abercrombie and Kim Robinson | Fiction | 26.37 € | Tor Books | ✓ | ||
![]() |
The Dispossessed Ocean 67 | Martha Wells | Fiction | 40.62 € | Tor Books | ✗ | ||




