Sha256: 599bb95514b217a38abe78013c58788b4ad2d2e0dcffdda754dddf6bad5a62f0
Contents?: true
Size: 547 Bytes
Versions: 15
Compression:
Stored size: 547 Bytes
Contents
<% title "Users" %> <table> <tr> <th>First Name</th> <th>Last Name</th> <th>Date Of Birth</th> </tr> <% for user in @users %> <tr> <td><%= user.first_name %></td> <td><%= user.last_name %></td> <td><%= user.date_of_birth %></td> <td><%= link_to "Show", user %></td> <td><%= link_to "Edit", edit_user_path(user) %></td> <td><%= link_to "Destroy", user, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <p><%= link_to "New User", new_user_path %></p>
Version data entries
15 entries across 15 versions & 1 rubygems