tabletop-companion/app/views/character_sheet_sections/_edit_links.html.erb

13 lines
614 B
Plaintext
Raw Normal View History

<%# locals: (section:, parent:, id:) -%>
<%= link_to t(".add_subsection"),
2024-06-07 15:53:32 +00:00
new_character_character_sheet_section_path(@character, parent_section_id: parent&.id),
data: { turbo_stream: true } %>
<% if section.present? %>
<%= link_to t(".add_stat"),
new_character_sheet_section_stat_path(section), data: { turbo_stream: true } %>
<% end %>
<% unless id == "character_sheet_add_section" %>
2024-06-07 15:53:32 +00:00
<%= link_to t(".delete_section", name: section.name), character_sheet_section_path(section),
data: { turbo_method: :delete, turbo_confirm: t(".confirm_delete", name: section.name) } %>
<% end %>