Sha256: 796a4bcea7d62de9656c0bfa784df3a3e6895e96fca2ee65330dd0ddd8558c62
Contents?: true
Size: 984 Bytes
Versions: 12
Compression:
Stored size: 984 Bytes
Contents
<% @page_title = "#{l :work_accounts}"%> <div id="spotlight"> <div class="btitle"> <%=image_detour_to 'add.png', l(:new_work_account), :action => 'new' %> <h4><%=@page_title%></h4> </div> <table> <tr> <th><%=l :name %></th> <th><%=l :track_times %></th> <th><%=l :invoice_code %></th> </tr> <% for work_account in @work_accounts %> <tr> <td><%=link_to h(work_account.name), :controller => 'works', :action => :list, :report_filter => {:work_account_id => work_account.id} %></td> <td align="right"><%=work_account.track_times? %></td> <td><%=h(work_account.invoice_code) %></td> <td><%= link_to 'Edit', :action => 'edit', :id => work_account %></td> <td><%= link_to 'Destroy', { :action => 'destroy', :id => work_account }, :confirm => 'Are you sure?', :method => :post %></td> </tr> <% end %> </table> <%=will_paginate @work_accounts %> <%=back_or_link_to l(:back), :controller => 'welcome', :action => 'index' %> </div>
Version data entries
12 entries across 12 versions & 1 rubygems