Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.38 KB | None | 0 0
  1.   <% @transactions.each do |t| %>
  2.     <tr>
  3.       <td><%= l t.created_at, :format => :short %></td>
  4.       <td><%= t.user.login %></td>
  5.       <td><%= t t.controller_name, :scope => [:activerecord, :controllers] %></td>
  6.       <td><%= t.controller_action %></td>
  7.       <td><%= t t.model_class, :scope => [:activerecord, :models] %> ID #<%= t.model_id %></td>
  8.     </tr>
  9.   <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement