tabletop-companion/app/views/stats/_stat.html.erb

28 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-06-07 15:53:32 +00:00
<div class="stat" id="<%= dom_id(stat) %>">
2024-06-10 19:39:46 +00:00
<% if @editable %>
2024-06-18 07:43:39 +00:00
<div class="feature-edit-buttons">
<%= icon_link_to("cod-triangle_left", reorder_down_character_sheet_feature_path(stat),
data: { turbo_method: :patch }) %>
<%= icon_link_to("md-delete", stat,
data: { turbo_method: :delete, turbo_confirm: t(".confirm_delete", name: stat.name) }) %>
<%= icon_link_to("cod-triangle_right", reorder_up_character_sheet_feature_path(stat),
data: { turbo_method: :patch }) %>
</div>
2024-06-10 19:39:46 +00:00
<% end %>
2024-06-07 15:53:32 +00:00
<h6><%= stat.name %></h6>
2024-06-13 16:04:25 +00:00
<% if @editable %>
<%= form_with model: stat, class: "stat-form", data: { controller: "auto-update" } do |f| %>
2024-06-21 08:09:19 +00:00
<%= hidden_field_tag :editable, value: true %>
2024-06-13 16:04:25 +00:00
<%= f.number_field :value %>
<% end %>
2024-06-14 12:22:24 +00:00
<% else %>
2024-06-21 08:09:19 +00:00
<%= link_to stat, data: { turbo_frame: :modal } do %>
2024-06-21 11:46:12 +00:00
<div class="stat-value">
<%= stat.value %>
<div class="stat-min-value"><%= stat.min_allowed %></div>
<div class="stat-max-value"><%= stat.max_allowed %></div>
</div>
2024-06-21 08:09:19 +00:00
<% end %>
2024-06-11 10:37:58 +00:00
<% end %>
2024-06-07 15:53:32 +00:00
</div>