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