Sha256: 6e28948845a342a48512aa929b0405a42d4a190e0cd2ad449f491f351643f778

Contents?: true

Size: 570 Bytes

Versions: 5

Compression:

Stored size: 570 Bytes

Contents

<%# show_filters: :when_filtered %>
<%= grid(@tasks_grid) do |g|
  g.column name: 'ID', attribute: 'id' do |task|
    task.id
  end
  g.column name: 'Title', attribute: 'title'  do |task|
    task.title
  end
  g.column  name: 'Description', attribute: 'description' do |task|
    task.description
  end
  g.column  name: 'Archived', attribute: 'archived' do |task|
    task.archived? ? 'Yes' : 'No'
  end
  g.column name: 'Due Date', attribute: 'due_date' do |task|
    task.due_date
  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/basics3/_grid.html.erb
wice_grid-7.1.3 spec/support/test_app/app/views/basics3/_grid.html.erb
wice_grid-7.1.2 spec/support/test_app/app/views/basics3/_grid.html.erb
wice_grid-7.1.1 spec/support/test_app/app/views/basics3/_grid.html.erb
wice_grid-7.1.0 spec/support/test_app/app/views/basics3/_grid.html.erb