Sha256: eb2ca7f7ea4c79805e27902ceccf5febae5a92d15e2b4a7d8008e03c2634ecd7

Contents?: true

Size: 696 Bytes

Versions: 6

Compression:

Stored size: 696 Bytes

Contents

<h1>Listing admin_languages</h1>

<table>
	<thead>
	<tr>
		<th>Name</th>
		<th>Iso 639 1</th>
		<th></th>
		<th></th>
		<th></th>
	</tr>
	</thead>

	<tbody>
	<% @admin_languages.each do |admin_language| %>
		<tr>
			<td><%= admin_language.name %></td>
			<td><%= admin_language.iso_639_1 %></td>
			<td><%= link_to 'Show', admin_odania_language_path(admin_language) %></td>
			<td><%= link_to 'Edit', edit_admin_odania_language_path(admin_language) %></td>
			<td><%= link_to 'Destroy', admin_odania_language_path(admin_language), method: :delete, data: {confirm: 'Are you sure?'} %></td>
		</tr>
	<% end %>
	</tbody>
</table>

<br>

<%= link_to 'New Language', new_admin_odania_language_path %>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
odania_core-0.0.6 app/views/admin/odania/languages/index.html.erb
odania_core-0.0.5 app/views/admin/odania/languages/index.html.erb
odania_core-0.0.4 app/views/admin/odania/languages/index.html.erb
odania_core-0.0.3 app/views/admin/odania/languages/index.html.erb
odania_core-0.0.2 app/views/admin/odania/languages/index.html.erb
odania_core-0.0.1 app/views/admin/odania/languages/index.html.erb