<%= turbo_frame_tag :modal do %>
<%= icon_link_to "fa-close", table_character_character_sheet_sections_path(@stat.character.table, @stat.character), class: "icon-link" %>

<%= @stat.name %>

<%= form_with model: @stat, class: "stat-form", data: { controller: "auto-update" } do |f| %> <%= f.number_field :value %> <% end %> <%= form_with model: DiceRoll.new, url: table_dice_rolls_path(@stat.character.table), class: "stat-form", data: { controller: "dice-roll modal-closer", action: "modal-closer#closeModal" } do |f| %> <%= f.hidden_field :rollable_type, value: "Stat" %> <%= f.hidden_field :rollable_id, value: @stat.id %> <%= f.submit "#{t(".roll")}".html_safe, class: "roll-button" %> <% end %>
<% end %>