Sha256: 26169572eb2bce272a6feb4b1c37144bd27ddc327433d7d508d966c53a69efd3
Contents?: true
Size: 642 Bytes
Versions: 5
Compression:
Stored size: 642 Bytes
Contents
<%= grid(@tasks_grid) do |g| g.column name: 'ID', attribute: 'id', filter_type: :range g.column name: 'Title', attribute: 'title', negation: true g.column name: 'Status', attribute: 'status_id', custom_filter: Status.to_dropdown do |task| task.status.name if task.status end g.column name: 'Project Name', attribute: 'project_id', custom_filter: Project.to_dropdown do |task| task.project.name if task.project end g.column name: 'Due Date', attribute: 'due_date' do |task| task.due_date if task.due_date end g.column name: 'Added', attribute: 'created_at' do |task| task.created_at.to_fs(:db) end end -%>
Version data entries
5 entries across 5 versions & 1 rubygems