Sha256: 67b077d7479b672b5d2bb577286c7442f0affda754bf0bb18e5eafe79f5141cf
Contents?: true
Size: 497 Bytes
Versions: 5
Compression:
Stored size: 497 Bytes
Contents
<%= grid(@tasks_grid) do |g| g.column name: 'ID', attribute: 'id', filter: false g.column name: 'Title', attribute: 'title' g.column name: 'Description', attribute: 'description', filter: false g.column name: 'Archived', attribute: 'archived' do |task| task.archived? ? 'Yes' : 'No' end g.column name: 'Added', attribute: 'created_at', filter: false do |task| task.created_at.to_fs(:short) end g.column do |task| link_to('Edit', edit_task_path(task)) end end -%>
Version data entries
5 entries across 5 versions & 1 rubygems