Sha256: 9534a60ccc372a84be8dd681b7c879a64d58a0d986ef96a9e27395973adb1db2
Contents?: true
Size: 403 Bytes
Versions: 5
Compression:
Stored size: 403 Bytes
Contents
<%= grid(@tasks_grid) 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: 'Due Date', attribute: 'due_date' g.column do |task| link_to('Edit', edit_task_path(task)) end end -%>
Version data entries
5 entries across 5 versions & 1 rubygems