Sha256: 3ea18b189336286035f30a402f469e11293f5433570a7fc5d46699ee8d0f8f85
Contents?: true
Size: 692 Bytes
Versions: 5
Compression:
Stored size: 692 Bytes
Contents
<h1>Listing work_locks</h1> <table> <tr> <% for column in WorkLock.content_columns %> <th><%= column.human_name %></th> <% end %> </tr> <% for work_lock in @work_locks %> <tr> <% for column in WorkLock.content_columns %> <td><%=h work_lock.send(column.name) %></td> <% end %> <td><%= link_to 'Show', :action => 'show', :id => work_lock %></td> <td><%= link_to 'Edit', :action => 'edit', :id => work_lock %></td> <td><%= link_to 'Destroy', { :action => 'destroy', :id => work_lock }, :confirm => 'Are you sure?', :method => :post %></td> </tr> <% end %> </table> <%=will_paginate @work_locks %> <br /> <%= link_to 'New work_lock', :action => 'new' %>
Version data entries
5 entries across 5 versions & 1 rubygems