18 lines
729 B
Plaintext
18 lines
729 B
Plaintext
<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">
|
|
<div id="<%= dom_id(character_sheet_section) %>_features" class="stats">
|
|
<%= render character_sheet_section.character_sheet_features.order(:order_index) %>
|
|
</div>
|
|
<% if @editable %>
|
|
<div id="<%= dom_id(character_sheet_section) %>_add_section">
|
|
<%= render partial: "character_sheet_sections/edit_links",
|
|
locals: { section: character_sheet_section, parent: character_sheet_section, id: nil } %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|