Sha256: 450c38f02d7d366bc04c5cce7072e1246723a5d6447a5fc1d836147410880b6e
Contents?: true
Size: 622 Bytes
Versions: 1
Compression:
Stored size: 622 Bytes
Contents
<%= form_for(@other_item) do |f| %> <% if @other_item.errors.any? %> <div id="error_explanation"> <h2><%= pluralize(@other_item.errors.count, "error") %> prohibited this other_item from being saved:</h2> <ul> <% @other_item.errors.full_messages.each do |msg| %> <li><%= msg %></li> <% end %> </ul> </div> <% end %> <div class="field"> <%= f.label :title %><br> <%= f.text_field :title %> </div> <div class="field"> <%= f.label :sequence %><br> <%= f.number_field :sequence %> </div> <div class="actions"> <%= f.submit %> </div> <% end %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails_sortable-0.0.5 | spec/dummy/app/views/other_items/_form.html.erb |