tabletop-companion/app/views/counters/_form.html.erb

17 lines
548 B
Plaintext
Raw Normal View History

2024-06-12 16:51:57 +00:00
<section class="inset">
<%= form_with model: @counter, url: character_sheet_section_counters_path(@section) do |f| %>
2024-06-17 13:53:09 +00:00
<% if @counter.new_record? %>
<%= f.fields_for :character_sheet_feature do |ff| %>
<%= ff.hidden_field :featurable_id, value: @counter.id %>
<%= ff.hidden_field :character_sheet_section_id, value: @section.id %>
<% end %>
<% end %>
2024-06-12 16:51:57 +00:00
<%= f.label :name %>
<%= f.text_field :name %>
<%= display_form_errors(@section, :name) %>
<%= f.submit button_text %>
<% end %>
</section>