I would like to add either some html or a div to an active admin form, so that I can add a jquery file uploader progress bar to the active admin form page. Currently, my form looks like this:
form(:html => { :multipart => true}) do |f|
f.inputs "Studio" do
f.input :name
f.input :position
f.input :description
f.input :image, :label => "Image - (must be 335x221px)"
f.input :gallery_image, :label => "Image - (must be 600x400px)"
end
f.actions
end
Let's say I wanted to add a div above each of the uploaders to show my upload progress, how would I add some sort of a div above each?