mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 09:21:25 +00:00
20 lines
416 B
Text
20 lines
416 B
Text
<h3 class="center">
|
|
<%= namelink @user.username %>
|
|
</h3>
|
|
|
|
<table class="data">
|
|
<tr>
|
|
<th>Username</th>
|
|
<th>SteamID</th>
|
|
<th>Last IP</th>
|
|
<th>Date</th>
|
|
</tr>
|
|
<% @user.versions.each do |user| %>
|
|
<tr>
|
|
<td><%= h user.username %></td>
|
|
<td><%= h user.steamid %></td>
|
|
<td><%= h user.lastip %></td>
|
|
<td><%= shorttime user.updated_at %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|