Sha256: 3d7c611a578942186449f8fcab6e5253e5254c82c7c4def54a563d25a694cb40
Contents?: true
Size: 436 Bytes
Versions: 12
Compression:
Stored size: 436 Bytes
Contents
<%= grid(@tasks_grid) do |g| g.column name: 'ID', attribute: 'id', filter_type: :range g.column name: 'Title', attribute: 'title' g.column name: 'Description', attribute: 'description' g.column name: 'Archived', attribute: 'archived' do |task| task.archived? ? 'Yes' : 'No' end g.column name: 'Due Date', attribute: 'due_date' g.column do |task| link_to('Edit', edit_task_path(task)) end end -%>
Version data entries
12 entries across 12 versions & 2 rubygems