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

17 lines
428 B
Plaintext
Raw Normal View History

<% content_for :title, t(".character_sheet", name: @character.name) %>
<h2><%= @character.name %></h2>
<div id="character_sheet">
<% if @sections.any? %>
<%= render @sections %>
<% else %>
<p><%= t(".no_sections") %></p>
<% end %>
</div>
<div id="character_sheet_add_section">
<%= link_to t(".add_section"), new_character_character_sheet_section_path(@character),
data: { turbo_stream: true } %>
</div>