<%= render "shared/globalize_locales", resource: @option %> <%= translatable_form_for(@option, url: form_url) do |f| %> <%= render "shared/errors", resource: @option %> <%= f.hidden_field :given_order, value: @option.persisted? ? @option.given_order : @option.class.last_position(@option.question_id || @question.id) + 1 %>
<%= f.translatable_fields do |translations_form| %>
<%= translations_form.text_field :title %>
<%= translations_form.text_area :description, maxlength: Poll::Question.description_max_length, class: "html-area" %>
<% end %>
<%= f.submit(class: "button success expanded", value: t("shared.save")) %>
<% end %>