Sha256: 337771e286fe37c3f1e2eac91c706f95b939fa6679502be58fc3307d78e0e67a
Contents?: true
Size: 839 Bytes
Versions: 2
Compression:
Stored size: 839 Bytes
Contents
<h1>Listing users</h1> <table> <thead> <tr> <th>Name</th> <th>Email</th> <th>Country</th> <th>Country Name from second select</th> <th>State</th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @users.each do |user| %> <tr> <td><%= user.name %></td> <td><%= user.email %></td> <td><%= CountryStateSelect::Constant::COUNTRIES[user.country_id] %></td> <td><%= user.country_name%></td> <td><%= user.state_name %></td> <td><%= link_to 'Show', user %></td> <td><%= link_to 'Edit', edit_user_path(user) %></td> <td><%= link_to 'Destroy', user, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New User', new_user_path %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
country_state_select-0.0.4 | test/dummy/app/views/users/index.html.erb |
country_state_select-0.0.3 | test/dummy/app/views/users/index.html.erb |