OSDN Git Service

bdfa554afc343abe78f2be11a66e2c646a4d9389
[pettanr/pettanr.git] / app / views / panels / _body.html.erb
1 <%= content_tag :div, :id => panel.tag_id, :panel_id => panel.tag_panel_id, :class => "pettanr-comic-panel", :style => "width: #{panel.width}px; height: #{panel.height}px; border-style: solid; border-width: #{panel.border}px; border-color: black; background-color: white;" do %>
2   <% if panel.visible? operators -%>
3     <% panel.panel_elements.each do |element| %>
4       <%= render element.path_name + '/element', :element => element, :root => panel, :spot => spot %>
5     <% end %>
6   <% else %>
7     <h2><%= t('panels.hidden') %></h2>
8   <% end %>
9 <% end %>
10 <% panel.rendered %>