Sha256: 3799fd2823cb051ebeb7cf111d3874fecaeeaa8844e93bddd128c186573d090c

Contents?: true

Size: 308 Bytes

Versions: 22

Compression:

Stored size: 308 Bytes

Contents

<h1>Listing users</h1>

<table>
  <tr>
    <th>Name</th>
    <th>Last name</th>
    <th>Country</th>
  </tr>

<% @users.each do |user| %>
  <tr>
    <td><%= link_to user.name, user %></td>
    <td><%= user.last_name %></td>
    <td><%= COUNTRIES[user.country.to_i] %></td>
  </tr>
<% end %>
</table>

<br />

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
best_in_place-1.1.2 test_app/app/views/users/index.html.erb
best_in_place-1.1.1 test_app/app/views/users/index.html.erb
best_in_place-1.1.0 test_app/app/views/users/index.html.erb
best_in_place-0.2.3 test_app/app/views/users/index.html.erb
best_in_place-1.0.6 test_app/app/views/users/index.html.erb
best_in_place-1.0.5 test_app/app/views/users/index.html.erb
best_in_place-1.0.4 test_app/app/views/users/index.html.erb
best_in_place-1.0.3 test_app/app/views/users/index.html.erb
best_in_place-0.2.2 test_app/app/views/users/index.html.erb
best_in_place-1.0.2 test_app/app/views/users/index.html.erb
best_in_place-0.2.1 test_app/app/views/users/index.html.erb
best_in_place-1.0.1 test_app/app/views/users/index.html.erb
best_in_place-0.2.0 test_app/app/views/users/index.html.erb
best_in_place-1.0.0 test_app/app/views/users/index.html.erb
best_in_place-0.1.9 test_app/app/views/users/index.html.erb
best_in_place-0.1.8 test_app/app/views/users/index.html.erb
best_in_place-0.1.7 test_app/app/views/users/index.html.erb
best_in_place-0.1.6 test_app/app/views/users/index.html.erb
best_in_place-0.1.5 test_app/app/views/users/index.html.erb
best_in_place-0.1.4 test_app/app/views/users/index.html.erb