Sha256: 8b2e5d2b14d08c8f22590cd087a37d2b0640dc8cce6f8fe4ef9c7e616259e21d
Contents?: true
Size: 977 Bytes
Versions: 12
Compression:
Stored size: 977 Bytes
Contents
<%= grid(@tasks_grid, show_filters: :always) 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: Priority.to_dropdown do |task| task.priority.name if task.priority end 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: 'Archived', attribute: 'archived' do |task| task.archived? ? 'Yes' : 'No' end g.column name: 'Due Date', attribute: 'due_date' do |task| task.due_date.to_s(:short) end g.column name: 'Added', attribute: 'created_at' do |task| task.created_at.to_s(:short) end g.column do |task| link_to('Edit', edit_task_path(task)) end end %>
Version data entries
12 entries across 12 versions & 2 rubygems