9 lines
444 B
Plaintext
9 lines
444 B
Plaintext
|
<%# locals: (section:, parent:, id:) -%>
|
||
|
<%= link_to t(".add_subsection"),
|
||
|
new_character_character_sheet_section_path(@character, parent_section_id: parent&.id),
|
||
|
data: { turbo_stream: true } %>
|
||
|
<% unless id == "character_sheet_add_section" %>
|
||
|
<%= 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 %>
|