Sha256: 0b5bc5c8b40748a5f469b532150249b0314fe9bb0d86e527da0de75553dd47f5
Contents?: true
Size: 857 Bytes
Versions: 5
Compression:
Stored size: 857 Bytes
Contents
<%= grid(@tasks_grid) do |g| g.column name: 'ID', attribute: 'id', filter: false g.column name: 'Title', attribute: 'title', negation: true 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: 'Added', attribute: 'created_at' do |task| task.created_at.to_fs(:short) end g.column do |task| link_to('Edit', edit_task_path(task)) end end -%>
Version data entries
5 entries across 5 versions & 1 rubygems