<% if @book.has_cover? %>
<% end %>
<%= t(:book_authors, count: @book.authors.count) %>
<% @book.authors.each do |author| %>
- <%= link_to author.name, author %>
<% end %>
<% if @book.serie %>
<%= t :book_serie %>
<%= link_to @book.serie.name, @book.serie %>
<%= @book.series_index.to_i %>
<% end %>
<%= t(:book_lang, count: @book.languages.count) %>
<% @book.languages.each do |language| %>
<%= language.lang_code %>
<% end %>
<%= t(:book_tag, count: @book.tags.count) %>
<% @book.tags.each do |tag| %>
<%= tag.name %>
<% end %>
<%= t :book_detail %>
<% if @book.pubdate %>
- <%= t :book_pubdate %> <%= @book.pubdate.to_formatted_s(:date) %>
<% end %>
<% if @book.publisher %>
- <%= t :book_publisher %> <%= @book.publisher.name %>
<% end %>
<% if @book.has_cover? %>
<%= image_tag(cover_book_path(@book), alt: t(:no_cover), class: "img-responsive img-rounded") %>
<% end %>