Sha256: eb6c02b022e78c6fc07413f9027eb963808fc3d10492ca184b14b759a4e61185

Contents?: true

Size: 482 Bytes

Versions: 12

Compression:

Stored size: 482 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_s(:short)
  end


  g.column   do |task|
    link_to('Edit', edit_task_path(task))
  end
end -%>

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
wice_grid-6.1.3 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb
wice_grid-6.1.2 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb
wice_grid-6.1.1 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb
wice_grid-6.1.0 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb
pwice_grid-7.0.0 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb
pwice_grid-6.1.2 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb
pwice_grid-6.1.1 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb
pwice_grid-6.1.0 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb
pwice_grid-5.0.2 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb
pwice_grid-5.0.1 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb
pwice_grid-5.0.0 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb
wice_grid-4.1.0 spec/support/test_app/app/views/disable_all_filters/_grid.html.erb