Sha256: f610aaf092440449b949490443a98380f25dc7952e6ad37e41332faed340d3e3
Contents?: true
Size: 664 Bytes
Versions: 4
Compression:
Stored size: 664 Bytes
Contents
<h1>Recent actions</h1> <table> <thead> <tr> <th>Date</th> <th>Description</th> <th>Action</th> </tr> </thead> <tbody> <% @undo_items.each do |undo_item| -%> <tr class="<%= cycle('', 'alt') %>"> <td><%= undo_item.created_at.strftime('%d %b, %Y') %></td> <td><%= undo_item.description %></td> <td> <%= form_for(undo_item, :as => :undo_item, :url => enki.admin_undo_item_path(undo_item), :html => {:class => 'undo-item', :method => :post}) do |form| -%> <%= image_submit_tag("silk/arrow_undo.png", :alt => 'Undo') %> <% end -%> </td> </tr> <% end -%> </tbody> </table>
Version data entries
4 entries across 4 versions & 1 rubygems