Sha256: 6e2cc5c680978635c1e7794c7f9659621619caa2a33e4990ee54f59ab4e02ab2
Contents?: true
Size: 930 Bytes
Versions: 36
Compression:
Stored size: 930 Bytes
Contents
<%= grid(@tasks_grid, hide_submit_button: true) do |g| g.column name: 'ID', attribute: 'id', filter: false g.column name: 'Title', attribute: 'title', auto_reload: true g.column name: 'Priority', attribute: 'priority_id', custom_filter: Priority.to_dropdown, auto_reload: true do |task| task.priority.name if task.priority end g.column name: 'Status', attribute: 'status_id', custom_filter: Status.to_dropdown, auto_reload: true do |task| task.status.name if task.status end g.column name: 'Project Name', attribute: 'project_id', custom_filter: Project.to_dropdown, auto_reload: true do |task| task.project.name if task.project end g.column name: 'Archived', attribute: 'archived', auto_reload: true do |task| task.archived? ? 'Yes' : 'No' end g.column name: 'Added', attribute: 'created_at', auto_reload: true do |task| task.created_at.to_s(:short) end end -%>
Version data entries
36 entries across 12 versions & 2 rubygems