<%= bootstrap_form_for [@problem, @translation], layout: :basic do |f| %> <%= f.text_field :title %>
<%= f.text_area :content, placeholder: t('.translation_source_explanation') %>
<%= t '.copyright_warning_html' %> <% if not user_signed_in? %> <%= t '.not_logged_in_warning' %> <% end %>
<%= f.primary %> <% if user_signed_in? and current_user.admin? %> <%= f.button t('.save_and_accept'), type: :submit, name: "accept", value: true, class: "btn btn-success" %> <% end %> <% end %>