<%= t '.title' -%>

<%= notice %>

<%= render 'standard', :panel => @panel, :author => @author %> <% if @panel.own? @author %> <%= link_to t('link.edit'), edit_panel_path(@panel) %> <%= link_to t('link.destroy'), panel_path(@panel), :method => :delete %> <%= link_to t('link.catch'), catch_panel_path(@panel) %> <% end %> <% if @author %>

<%= t('panels.show.copy') -%>

<%= form_for(Panel.new, :html => {:jqform => 'pettanr-panel-form'}) do |f| %> <%= hidden_field_tag "json", @panel.copy().to_json %>
<%= submit_tag t('panels.show.inspire') -%>
<% end %>

<%= t('scroll_panels.append.new_scrolls') -%>

<% @new_scrolls.each do |scroll| %> <%= render 'scroll_panels/append_scroll', :panel => @panel, :scroll => scroll, :author => @author %> <% end %>

<%= t('scroll_panels.append.fresh_scrolls') -%>

<% @fresh_scrolls.each do |scroll| %> <%= render 'scroll_panels/append_scroll', :panel => @panel, :scroll => scroll, :author => @author %> <% end %>

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

<% @new_sheets.each do |sheet| %> <%= render 'sheet_panels/append_sheet', :panel => @panel, :sheet => sheet, :author => @author %> <% end %>

<%= t('sheet_panels.append.fresh_sheets') -%>

<% @fresh_sheets.each do |sheet| %> <%= render 'sheet_panels/append_sheet', :panel => @panel, :sheet => sheet, :author => @author %> <% end %>
<% end %>