<% if current_user.at_least(:active) %>
<%= turbo_frame_tag target: dom_id(Unit.new) do %>
<%= image_link_to t('.add_unit'), 'plus-outline', new_unit_path, id: :add_unit,
onclick: 'this.style.visibility = "hidden";' %>
<% end %>
<% end %>
<%= turbo_frame_tag 'unit_form_frame' %>
<%= User.human_attribute_name(:symbol).capitalize %> |
<%= User.human_attribute_name(:name).capitalize %> |
<%= User.human_attribute_name(:multiplier).capitalize %> |
<% if current_user.at_least(:active) %>
<%= t :actions %> |
<% end %>
<% Unit.each_with_level(@units) do |unit, level| %>
<%= link_to unit.symbol, edit_unit_path(unit), class: level > 0 ? 'subunit' : '' %>
|
<%= unit.name %> |
<%= scientifize(unit.multiplier) unless unit.multiplier == 1 %> |
<% if current_user.at_least(:active) %>
<%= image_button_to t(".delete_unit"), "delete-outline", unit_path(unit),
method: :delete %>
|
<% end %>
<% end %>