Sha256: 559aca90ef79080dc401373d6b50912fb98bc8c7186b4334a017eb33c4147664

Contents?: true

Size: 484 Bytes

Versions: 4

Compression:

Stored size: 484 Bytes

Contents

<h1>Listing languages</h1>

<table>
  <tr>
    <th>Name</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @languages.each do |language| %>
  <tr>
    <td><%= language.name %></td>
    <td><%= link_to 'Show', language %></td>
    <td><%= link_to 'Edit', edit_language_path(language) %></td>
    <td><%= link_to 'Destroy', language, method: :delete, data: { confirm: 'Are you sure?' } %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New Country', new_language_path %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dynamic_controller-0.0.12 spec/dummy/app/views/languages/index.html.erb
dynamic_controller-0.0.11 spec/dummy/app/views/languages/index.html.erb
dynamic_controller-0.0.10 spec/dummy/app/views/languages/index.html.erb
dynamic_controller-0.0.9 spec/dummy/app/views/languages/index.html.erb