Sha256: 26f89c369da73a007e8bd3e119b2e1803abc5ffa90fd2749cac49c296e26c72d
Contents?: true
Size: 779 Bytes
Versions: 12
Compression:
Stored size: 779 Bytes
Contents
<%= form_for(@posts_with_collection_and_file) do |f| %> <% if @posts_with_collection_and_file.errors.any? %> <div id="error_explanation"> <h2><%= pluralize(@posts_with_collection_and_file.errors.count, "error") %> prohibited this posts_with_collection_and_file from being saved:</h2> <ul> <% @posts_with_collection_and_file.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, {uploadcare: {multiple: false}, data: {multiple: true}} %> </div> <div class="actions"> <%= f.submit %> </div> <% end %>
Version data entries
12 entries across 12 versions & 1 rubygems