Sha256: 31738397e74925624ba2b5b1daafbd4c864e1b3c30acc6d562fe440fb67d0ed5

Contents?: true

Size: 471 Bytes

Versions: 5

Compression:

Stored size: 471 Bytes

Contents

<%= grid(@tasks_grid, show_filters: :no) do |g|
  g.column name: 'ID', attribute: 'id'
  g.column name: 'Title', attribute: 'title'
  g.column  name: 'Description', attribute: 'description'
  g.column  name: 'Archived', attribute: 'archived' do |task|
    task.archived? ? 'Yes' : 'No'
  end
  g.column name: 'Added', attribute: 'created_at' do |task|
    task.created_at.to_fs(:short)
  end
  g.column   do |task|
    link_to('Edit', edit_task_path(task))
  end
end -%>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
wice_grid-7.1.4 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb
wice_grid-7.1.3 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb
wice_grid-7.1.2 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb
wice_grid-7.1.1 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb
wice_grid-7.1.0 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb