13 lines
614 B
Plaintext
13 lines
614 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 } %>
|
|
<% 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" %>
|
|
<%= 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 %>
|