Sha256: cac376a72a1a2fb1735e84577ac67ee0981bb7687c5940a5db269a7636c27d29
Contents?: true
Size: 415 Bytes
Versions: 12
Compression:
Stored size: 415 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
12 entries across 12 versions & 2 rubygems