aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/app/views/tags/_form.html.erb
blob: 7e424b0e2067cdbeceb665066bff32472201f9c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<%= form.fields_for :tags do |tag_form| %>
  <div class="field">
    <%= tag_form.label :name, 'Tag:' %>
    <%= tag_form.text_field :name %>
  </div>
  <% unless tag_form.object.nil? || tag_form.object.new_record? %>
    <div class="field">
      <%= tag_form.label :_destroy, 'Remove:' %>
      <%= tag_form.check_box :_destroy %>
    </div>
  <% end %>
<% end %>