14 lines
323 B
Text
14 lines
323 B
Text
<p style="color: green"><%= notice %></p>
|
|
|
|
<h1>Wheel options</h1>
|
|
|
|
<div id="wheel_options">
|
|
<% @wheel_options.each do |wheel_option| %>
|
|
<%= render wheel_option %>
|
|
<p>
|
|
<%= link_to "Show this wheel option", wheel_option %>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= link_to "New wheel option", new_wheel_option_path %>
|