Sha256: 721c025cfa3aae14c03ac07b3dba5ac2fac7e5f1efec83bfb82d35369ae584d2
Contents?: true
Size: 995 Bytes
Versions: 12
Compression:
Stored size: 995 Bytes
Contents
<%= grid(@tasks_grid, hide_submit_button: true) do |g| g.column name: 'ID', attribute: 'id', auto_reload: true , filter_type: :range g.column name: 'Title', attribute: 'title', auto_reload: true, negation: true g.column name: 'Archived', attribute: 'archived', auto_reload: true do |rec| rec.archived? ? 'Yes' : 'No' 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: 'Due Date', attribute: 'due_date', auto_reload: true do |task| task.due_date if task.due_date end g.column name: 'Added', attribute: 'created_at', auto_reload: true do |task| task.created_at.to_s(:db) end g.column do |task| link_to('Edit', edit_task_path(task)) end end -%>
Version data entries
12 entries across 12 versions & 2 rubygems