mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
367 B
9 lines
367 B
12 years ago
|
= 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'
|