<%= t '.title' -%>

<% @comics.each do |comic| %> <% end %>
<%= link_to comic_icon(:object => comic, :size => 25), comic_path(comic) %> <%= link_to h(truncate(comic.title, :length => 40)), :controller => 'stories', :action => :comic, :id => comic.id %> (<%= comic.stories.size -%>) <%= distance_of_time_in_words_to_now comic.updated_at %> <%= link_to author_icon(:object => comic.author, :size => 25), comic_path(comic.author) %> <%= link_to h(truncate(comic.author.name, :length => 12)), author_path(comic.author) %> <% if comic.own? @author %> <%= link_to t('link.edit'), edit_comic_path(comic) %> <%= link_to t('link.destroy'), comic_path(comic), :method => :delete %> <% end %>
<%= paginate(@paginate) %> <%= link_to t('comics.new.title'), new_comic_path %>