Sha256: e3625585bd7b4df71df9ce83343508cc808de57703463ad3e86838780a1e26ce
Contents?: true
Size: 629 Bytes
Versions: 12
Compression:
Stored size: 629 Bytes
Contents
<%= grid(@tasks_grid) do |g| g.column name: 'ID', attribute: 'id', filter: false g.column name: 'Title', attribute: 'title' 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 if task.due_date end g.column name: 'Added', attribute: 'created_at' do |task| task.created_at.to_s(:db) end g.column name: 'Updated', attribute: 'updated_at', filter_type: :rails_datetime_helper, filter_control_options: {start_year: 2011} do |task| task.updated_at.to_s(:db) end end -%>
Version data entries
12 entries across 12 versions & 2 rubygems