Sha256: fa0423c98744fe2c4c74f3bfac8726ec2e765ba750a6ed7fccd9e63327da9a02
Contents?: true
Size: 521 Bytes
Versions: 2
Compression:
Stored size: 521 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Languages</h1> <table> <thead> <tr> <th>Name</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @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 %> </tbody> </table> <br> <%= link_to 'New Language', new_language_path %>
Version data entries
2 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
odania-0.2.0 | app/views/admin/languages/index.html.erb |
odania-0.2.0 | app/views/languages/index.html.erb |