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
2019-09-10 09:45:25 +05:00

25 lines
612 B
Text

<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>
<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>
<td><%= truncate session.user_agent, length: 40 %></td>
</tr>
<% end %>
</tbody>
</table>