18 lines
596 B
Plaintext
18 lines
596 B
Plaintext
<% content_for :title, @character.name %>
|
|
|
|
<h2><%= @character.name %></h2>
|
|
|
|
<%= link_to t(".sheet"), character_character_sheet_sections_path(@character) %>
|
|
<%= 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>
|