tap/app/views/users/index.html.erb

18 lines
364 B
Plaintext
Raw Normal View History

2014-12-09 22:19:03 +00:00
<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">
2015-03-19 17:04:58 +00:00
<tr>
<th>ID</th>
<th></th>
<th>Nickname</th>
<th>Debt</th>
<th></th>
</tr>
<%= render @users %>
</table>
2014-12-09 21:32:54 +00:00
</div>
</div>