2024-06-05 17:46:27 +00:00
|
|
|
<% content_for :title, @character.name %>
|
|
|
|
|
|
|
|
<h2><%= @character.name %></h2>
|
|
|
|
|
2024-06-06 13:18:10 +00:00
|
|
|
<%= link_to t(".sheet"), character_character_sheet_sections_path(@character) %>
|
2024-06-05 17:46:27 +00:00
|
|
|
<%= link_to t(".edit"), edit_character_path(@character) %>
|
|
|
|
|
|
|
|
<dl>
|
|
|
|
<dt><%= t(".owner") %></dt>
|
|
|
|
<dd><%= link_to @character.user.username, @character.user %></dd>
|
|
|
|
<dt><%= t(".game_system") %></dt>
|
|
|
|
<dd><%= @character.game_system.name %></dd>
|
|
|
|
<% if @character.table && @character.table.users.include?(Current.user) %>
|
|
|
|
<dt><%= t(".table") %></dt>
|
|
|
|
<dd><%= link_to @character.table.name, @character.table %></dd>
|
|
|
|
<% end %>
|
|
|
|
</dl>
|