test/dummy/app/views/images/_form.html.haml in attached-1.0.0 vs test/dummy/app/views/images/_form.html.haml in attached-1.0.1
- old
+ new
@@ -1,17 +1,15 @@
-= form_for image, :html => { :multipart => true, :class => 'form-horizontal' } do |form|
+= form_for image, :html => { :multipart => true, :role => 'form' } do |form|
- image.errors.each do |method, message|
= render 'shared/error', :method => method, :message => message
- .control-group
- = form.label :name, :class => "control-label"
- .controls
- = form.text_field :name
+ .form-group
+ = form.label :name
+ = form.text_field :name, :class => "form-control"
- .control-group
- = form.label :file, :class => "control-label"
- .controls
- = form.file_field :file
+ .form-group
+ = form.label :file
+ = form.file_field :file
.form-actions
= form.submit "Submit", :class => 'btn btn-primary'
= link_to 'Cancel', :back, :class => 'btn'
\ No newline at end of file