notebook/app/views/characters/_list.html.erb
2014-08-01 04:01:24 +00:00

32 lines
1006 B
Plaintext

<% @characters.each do |character| %>
<div class="col-md-3">
<div class="card">
<h1 class="card-heading">
<%= simple_format link_to character.name, character_path(character) %>
</h1>
<div class="card-body">
<p>
<strong>
<% if character.role.length > 0 %>
<%= character.role %><% if character.age.length > 0 %>, <%= character.age %><% end %>
<% end %>
</strong>
</p>
<p>
</p>
</div>
<div class="card-comments">
<p>
<% if session[:user] and session[:user] == character.user.id %>
<%= link_to t('.view', :default => t("helpers.links.view")),
character_path(character), :class => 'btn' %>
<%= link_to t('.edit', :default => t("helpers.links.edit")),
character_edit_path(character), :class => 'btn' %>
<% end %>
</p>
</div>
</div>
</div>
<% end %>