1 <h1>Listing bonus_policies</h1>
11 <% for bonus_policy in @bonus_policies %>
13 <td><%=h bonus_policy.number %></td>
14 <td><%=h bonus_policy.bonus_type %></td>
15 <td><%=h bonus_policy.days %></td>
16 <td><%=h bonus_policy.description %></td>
17 <td><%= link_to 'Show', :action => 'show', :id => bonus_policy %></td>
18 <td><%= link_to 'Edit', :action => 'edit', :id => bonus_policy %></td>
19 <td><%= link_to 'Destroy', { :action => 'destroy', :id => bonus_policy }, :confirm => 'Are you sure?', :method => :post %></td>
24 <%= link_to 'Previous page', { :page => @bonus_policy_pages.current.previous } if @bonus_policy_pages.current.previous %>
25 <%= link_to 'Next page', { :page => @bonus_policy_pages.current.next } if @bonus_policy_pages.current.next %>
29 <%= link_to 'New bonus_policy', :action => 'new' %>