Sha256: 2df0798591361855841d995bf1ee511d54db57aa37a0da5bfb59f6a94a1dbf1d

Contents?: true

Size: 1.26 KB

Versions: 6

Compression:

Stored size: 1.26 KB

Contents

<h1>Listing odania_menu_items</h1>

<table>
	<thead>
	<tr>
		<th></th>
		<th>Title</th>
		<th>Published</th>
		<th>Target type</th>
		<th>Target date</th>
		<th>Parent</th>
		<th></th>
		<th></th>
		<th></th>
	</tr>
	</thead>

	<tbody>
	<% @odania_menu_items.each do |odania_menu_item| %>
		<tr>
			<td><%= link_to star_icon_for_bool(@odania_menu.default_menu_item_id.eql?(odania_menu_item.id)), set_default_admin_odania_menu_odania_menu_item_path(menu_id: @odania_menu.id.to_s, id: odania_menu_item.id.to_s) %></td>
			<td><%= odania_menu_item.title %></td>
			<td><%= odania_menu_item.published %></td>
			<td><%= odania_menu_item.target_type %></td>
			<td><%= odania_menu_item.target_data %></td>
			<td><%= odania_menu_item.parent_id.nil? ? '-' : odania_menu_item.parent.title %></td>
			<td><%= link_to 'Show', admin_odania_menu_odania_menu_item_path(@odania_menu, odania_menu_item) %></td>
			<td><%= link_to 'Edit', edit_admin_odania_menu_odania_menu_item_path(@odania_menu, odania_menu_item) %></td>
			<td><%= link_to 'Destroy', admin_odania_menu_odania_menu_item_path(@odania_menu, odania_menu_item), method: :delete, data: {confirm: 'Are you sure?'} %></td>
		</tr>
	<% end %>
	</tbody>
</table>

<br>

<%= link_to 'New Menu item', new_admin_odania_menu_odania_menu_item_path %>

Version data entries

6 entries across 6 versions & 1 rubygems

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