1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/settings/sessions/_table.html.erb

26 lines
612 B
Text
Raw Normal View History

<table class="table">
<thead>
<tr>
<th scope="col">
<%= Session.human_attribute_name :logged_at %>
</th>
<th scope="col">
<%= Session.human_attribute_name :ip_address %>
</th>
2019-09-10 00:45:25 -04:00
<th scope="col">
<%= Session.human_attribute_name :user_agent %>
</th>
</tr>
</thead>
<tbody>
<% sessions.each do |session| %>
<tr>
<td><%= localize session.logged_at, format: :long %></td>
<td><%= session.ip_address %></td>
2019-09-10 00:45:25 -04:00
<td><%= truncate session.user_agent, length: 40 %></td>
</tr>
<% end %>
</tbody>
</table>