Sha256: 6b803e264a9b9945c4c992f49e1f313fc2e5e0a26852063f0f999e429a69b3e0
Contents?: true
Size: 363 Bytes
Versions: 12
Compression:
Stored size: 363 Bytes
Contents
<%= grid(@tasks_grid) do |g| g.column do |task| task.id end g.column do |task| task.title end g.column do |task| task.description end g.column do |task| task.archived? ? 'Yes' : 'No' end g.column 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