Sha256: c394c4b4c9c99f4c4129c3461f1667e5bb3f0eef4307d60a0879b1b6a2e4a0d6
Contents?: true
Size: 668 Bytes
Versions: 13
Compression:
Stored size: 668 Bytes
Contents
<%= form_for(@post_with_collection) do |f| %> <% if @post_with_collection.errors.any? %> <div id="error_explanation"> <h2><%= pluralize(@post_with_collection.errors.count, "error") %> prohibited this post_with_collection from being saved:</h2> <ul> <% @post_with_collection.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 :file %><br> <%= f.uploadcare_field :file %> </div> <div class="actions"> <%= f.submit %> </div> <% end %>
Version data entries
13 entries across 13 versions & 1 rubygems