Sha256: 7d45ef1aab414367836746f6be0e34a14a9ef3a5911fa9cb105b11f46a33799d
Contents?: true
Size: 882 Bytes
Versions: 29
Compression:
Stored size: 882 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> <%= link_to 'Previous page', { :page => @work_lock_pages.current.previous } if @work_lock_pages.current.previous %> <%= link_to 'Next page', { :page => @work_lock_pages.current.next } if @work_lock_pages.current.next %> <br /> <%= link_to 'New work_lock', :action => 'new' %>
Version data entries
29 entries across 29 versions & 1 rubygems