Listing panels

<% @panels.each do |panel| %> <% end %>
id Comic bg Width Height Border x y z t author_id created_at updated_at
<%= link_to panel.id, :action => :browse, :id => panel.id %> <%= link_to panel.comic_id, :controller => 'comics', :action => :browse, :id => panel.comic_id %> <%= link_to panel.resource_picture_id, :controller => 'resource_pictures', :action => :browse, :id => panel.resource_picture_id %> <%= panel.width %> <%= panel.height %> <%= panel.border %> <%= panel.x %> <%= panel.y %> <%= panel.z %> <%= panel.t %> <%= link_to panel.author_id, :controller => '/authors', :action => :browse, :id => panel.author_id %> <%= panel.created_at %> <%= panel.updated_at %> <%= link_to 'Destroy', panel, confirm: 'Are you sure?', method: :delete %>