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.
12 lines
518 B
12 lines
518 B
= form_for bike_model, :html => { :class => 'form-horizontal' } do |f|
|
|
.control-group
|
|
= f.label :model, :class => 'control-label'
|
|
.controls
|
|
= f.text_field :model, :class => 'text_field'
|
|
.control-group
|
|
= f.label :bike_brand_id, :class => 'control-label'
|
|
.controls
|
|
= f.number_field :bike_brand_id, :class => 'number_field'
|
|
.form-actions
|
|
= f.submit nil, :class => 'btn btn-primary'
|
|
= link_to t('.cancel', :default => t("helpers.links.cancel")), bike_models_path, :class => 'btn'
|
|
|