Sha256: 63887871132b37aa3514843d23b3eaeabdc30415d855864fe7d4a0845dec1813
Contents?: true
Size: 411 Bytes
Versions: 5
Compression:
Stored size: 411 Bytes
Contents
<%= grid(@tasks_grid) do |g| g.column name: 'ID', attribute: 'id', filter: false g.column name: 'Title', attribute: 'title' g.column name: 'Priority', attribute: 'priority_id', custom_filter: [['NOT DEFINED', 'null'], ['DEFINED', 'not null']] + Priority.to_dropdown do |task| task.priority.name if task.priority end g.column do |task| link_to('Edit', edit_task_path(task)) end end -%>
Version data entries
5 entries across 5 versions & 1 rubygems