orbit4-5/app/views/admin/dashboards/_recent_update.html.erb

25 lines
690 B
Plaintext

<div class="box-header">
<h2>
<i class="icons-cycle"></i>
<span class="break"></span>
<%= t(:recent_update) %>
</h2>
</div>
<div class="box-content">
<table class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th><%= t(:title) %></th>
<th class="span2"><%= t(:module) %></th>
</tr>
</thead>
<tbody>
<% @recent_updated.each do |object| %>
<tr>
<td><%= (object[0].title rescue nil) || (object[0].page.name rescue nil) || (object[0].name rescue nil) %></td>
<td><%= t("dashboard.#{object[0].class.to_s.underscore}") %></td>
</tr>
<% end %>
</tbody>
</table>
</div>