redmine_dmsf/app/views/dmsf_files/_revision_access.html.erb
2012-06-03 15:33:28 +01:00

23 lines
569 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><%=h(User.find(access["user_id"]))%></td>
<td><%=access["count"]%></td>
<td><%=Time.parse(access["min"].to_s).to_s(:db)%></td>
<td><%=Time.parse(access["max"].to_s).to_s(:db)%></td>
</tr>
<% end %>
</tbody>
</table>
</p>