<%= image_tag(get_home_page_logo, title: I18n.t('home')) %>
<%= @light_box.name %>
<% if @light_box.errors.any? %>
<%= pluralize(@light_box.errors.count, "erreur") %> <%= I18n.t('prohibited_this_operation') %>:
<% @light_box.errors.full_messages.each do |msg| %>
- <%= msg %>
<% end %>
<% end %>
<%= render :partial => 'full_screen_light_boxes/select_form' %>
<%= form_for(@light_box, :url => full_screen_light_box_path, :method => :patch) do |f| %>
<% if @light_box.errors.any? %>
<%= pluralize(@light_box.errors.count, "erreur") %> <%= I18n.t('prohibited_this_operation') %>:
<% @light_box.errors.full_messages.each do |msg| %>
- <%= msg %>
<% end %>
<% end %>
<%= f.label I18n.t("new_name") %>
<%= f.text_field(:name, :size => 25, :class => "form-control input-xs") %>
<%= f.submit I18n.t("validate"), :class => "btn btn-default btn-xs" %>
<% end %>