Sha256: e1db178efae6970182dc8463dd950c54a6ee7d0e44f997986cfbd7ba6352cc5a
Contents?: true
Size: 582 Bytes
Versions: 12
Compression:
Stored size: 582 Bytes
Contents
<%# show_filters: :when_filtered %> <%= grid(@tasks_grid) do |g| g.column name: 'ID', attribute: 'id' do |task| task.id end g.column name: 'Title', attribute: 'title' do |task| task.title end g.column name: 'Description', attribute: 'description' do |task| task.description 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 end g.column do |task| link_to('Edit', edit_task_path(task)) end end -%>
Version data entries
12 entries across 12 versions & 2 rubygems