Sha256: 6f53f39e3750655a82e29aba699ad5e1d5226a04f5be356b319a0d5f0bf879d8

Contents?: true

Size: 507 Bytes

Versions: 7

Compression:

Stored size: 507 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

7 entries across 7 versions & 1 rubygems

Version Path
dynamic_controller-0.0.8 spec/dummy/app/views/languages/index.html.erb
dynamic_controller-0.0.7 spec/dummy/app/views/languages/index.html.erb
dynamic_controller-0.0.6 spec/dummy/app/views/languages/index.html.erb
dynamic_controller-0.0.5 spec/dummy/app/views/languages/index.html.erb
dynamic_controller-0.0.4 spec/dummy/app/views/languages/index.html.erb
dynamic_controller-0.0.3 spec/dummy/app/views/languages/index.html.erb
dynamic_controller-0.0.2 spec/dummy/app/views/languages/index.html.erb