23 lines
628 B
Plaintext
23 lines
628 B
Plaintext
<p>
|
|
<table class="display access-table list">
|
|
<thead>
|
|
<tr>
|
|
<th><%=l(:field_user)%></th>
|
|
<th><%=l(:heading_access_downloads_emails)%></th>
|
|
<th><%=l(:heading_access_first)%></th>
|
|
<th><%=l(:heading_access_last)%></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% revision.access_grouped.each do |access| %>
|
|
<tr>
|
|
<td><%=link_to_user(access.user)%></td>
|
|
<td><%=access["count"]%></td>
|
|
<td><%=format_time(access.first_at.to_time(ActiveRecord::Base.default_timezone))%></td>
|
|
<td><%=format_time(access.last_at.to_time(ActiveRecord::Base.default_timezone))%></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</p>
|