Sha256: f3709776f8d7c30a0dccfdc7a1b2e58b8e010d5bb276a60a79e38f54220c5d03
Contents?: true
Size: 715 Bytes
Versions: 5
Compression:
Stored size: 715 Bytes
Contents
<%= define_grid(grid, hide_submit_button: true) do |g| g.column name: 'Title', attribute: 'title', auto_reload: true, negation: true, detach_with_id: :title g.column name: 'Archived', attribute: 'archived', auto_reload: true, detach_with_id: :archived do |rec| rec.archived? ? 'Yes' : 'No' end g.column name: 'Status', attribute: 'status_id', custom_filter: Status.to_dropdown, auto_reload: true, detach_with_id: :status_id do |task| task.status.name if task.status end g.column name: 'Due Date', attribute: 'due_date', auto_reload: true, detach_with_id: :due_date do |task| task.due_date if 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