|
<fieldset>
<% if f %>
<h4>Step <%= @step %></h4>
<%= f.label :description, "Description"%>
<%= f.text_field :description %>
<%= f.hidden_field :_destroy%>
<%= link_to "remove", '#', class: "remove_fields"%>
<% @step = @step + 1 %>
<% else %>
<p class="empty">There are no steps.</p>
<% end %>
</fieldset>
|