tap/app/views/users/index.html.erb
2015-03-19 18:04:58 +01:00

18 lines
364 B
Plaintext

<div class="row users">
<div class="col-md-8 col-md-offset-2">
<h1>All users</h1>
<%= render partial: 'flash' %>
<table id="users-table" class="table table-striped">
<tr>
<th>ID</th>
<th></th>
<th>Nickname</th>
<th>Debt</th>
<th></th>
</tr>
<%= render @users %>
</table>
</div>
</div>