<%= t('.title') %>

<%= notice %>

<%= t_m 'Story.comic_id' -%>: <%= link_to comic_icon(:object => @item.comic), comic_path(@item.comic) %> <%= link_to h(@item.comic.title), comic_path(@item.comic) %>

<%= link_to t('stories.show.t', :t => @item.disp_t), story_path(@item) %> <%= link_to_if @item, h(@item.title), play_story_path(@item) %>

<%= t_m 'Story.description' -%>: <%= h(@item.description) %>

<%= t_m 'Story.visible' -%>: <%= t_selected_item('story_visible_items', @item.visible) %>

<%= t_m 'Story.created_at' -%>: <%= l @item.created_at %>

<%= t_m 'Story.updated_at' -%>: <%= l @item.updated_at %>

<% @item.story_sheets.each do |story_sheet| %> <% if story_sheet.sheet and story_sheet.sheet.visible?(@operators) -%>
<%= link_to sheet_icon(:object => story_sheet.sheet, :size => 25), sheet_path(story_sheet.sheet) %> <%= link_to h(truncate(story_sheet.sheet.caption, :length => 40)), play_sheet_path(story_sheet.sheet) %> (<%= story_sheet.sheet.sheet_panels.size -%>)
<% end %> <% end %> <% if @item.own? @operators -%> <%= link_to t('link.edit'), edit_story_path(@item) %> <%= link_to t('link.destroy'), story_path(@item), :method => :delete %>

<%= t('story_sheets.append.new_sheets') -%>

<% @new_sheet_items.each do |sheet| %> <%= render 'story_sheets/append_sheet', :story => @item, :sheet => sheet, :operators => @operators %> <% end %>
<% end %>