mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-02-28 16:53:23 -05:00
9 lines
367 B
Plaintext
9 lines
367 B
Plaintext
= form_for bike_brand, :html => { :class => 'form-horizontal' } do |f|
|
|
.control-group
|
|
= f.label :brand, :class => 'control-label'
|
|
.controls
|
|
= f.text_field :brand, :class => 'text_field'
|
|
.form-actions
|
|
= f.submit nil, :class => 'btn btn-primary'
|
|
= link_to t('.cancel', :default => t("helpers.links.cancel")), bike_brands_path, :class => 'btn'
|