left4me/rails/app/views/wheel_options/index.html.erb
mwiegand 5ab99c7779
wip
2022-11-27 17:32:21 +01:00

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 %>