view app/views/pastes/_form.html.erb @ 83:ae360c3b0bb0

Disable explain when using jruby because it's not supported. The patch for this support exist but for some reason still not included in latest release of the jdbc adapter. Reference: https://github.com/jruby/activerecord-jdbc-adapter/pull/206
author Edho Arief <edho@myconan.net>
date Mon, 15 Oct 2012 03:45:18 -0700
parents 8ef70e8c239d
children b4b7a29b70f6
line wrap: on
line source

<%= form_for(@paste) do |f| %>
  <% if @paste.errors.any? %>
    <div class="alert alert-error" id="error_explanation">
      <h5><%= pluralize(@paste.errors.count, "error") %> prohibited this paste from being saved:</h5>

      <ul>
      <% @paste.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <%= f.text_area :paste, :class => 'span12', :rows => 10 %>
  </div>
  <div class="form-actions">
    <%= f.submit :class => 'btn btn-primary' %>
    <%= link_to 'Clear', root_path, :class => 'btn', :id => 'reset_paste' %>
  </div>
<% end %>