2024-06-06 13:18:10 +00:00
|
|
|
<div
|
|
|
|
class="<%= class_names("character-sheet-section", { "top-level": character_sheet_section.parent_section.nil? }) %>"
|
|
|
|
id="<%= dom_id(character_sheet_section) %>">
|
|
|
|
<h4><%= character_sheet_section.name %></h4>
|
|
|
|
|
|
|
|
<div class="content">
|
2024-06-17 15:36:05 +00:00
|
|
|
<div id="<%= dom_id(character_sheet_section) %>_features" class="stats">
|
|
|
|
<%= render character_sheet_section.character_sheet_features.order(:order_index) %>
|
2024-06-06 13:18:10 +00:00
|
|
|
</div>
|
2024-06-10 17:02:09 +00:00
|
|
|
<% if @editable %>
|
|
|
|
<div id="<%= dom_id(character_sheet_section) %>_add_section">
|
2024-06-17 16:12:19 +00:00
|
|
|
<%= render partial: "character_sheet_sections/edit_links",
|
2024-06-10 17:02:09 +00:00
|
|
|
locals: { section: character_sheet_section, parent: character_sheet_section, id: nil } %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2024-06-06 13:18:10 +00:00
|
|
|
</div>
|
|
|
|
</div>
|