tab/app/views/users/index.html.erb
2015-09-08 17:28:46 +02:00

21 lines
327 B
Plaintext

<h2>Users</h2>
<table>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Balance</th>
</tr>
</thead>
<tbody>
<% @users.each do |user| %>
<tr>
<td><%= user.id %></td>
<td><%= user.name %></td>
<td><%= user.balance %></td>
</tr>
<% end %>
</tbody>
</table>