Sha256: 6ab1cfc1a1e2b3a05bfaa6257f1fa6532c7ae7e39dc44baddb7e029791e71217

Contents?: true

Size: 422 Bytes

Versions: 1

Compression:

Stored size: 422 Bytes

Contents

<%= present :field_search, :fields => [:first_name, :last_name, {:email => :checkbox}] %>
<%= present @users, :grid, :id => "users",
  :fields => [:prefix, :first_name, :last_name, :email],
  :links => [link_to('add', new_user_path)],
  :record_links => [
    proc{|r| link_to 'edit', edit_user_path(r)},
    proc{|r| link_to 'delete', user_path(r), :method => :destroy},
    proc{|r| link_to 'show', user_path(r)}
  ]
%>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
presenting-1.0.0 test/rails/app/views/users/index.html.erb