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.
8 lines
383 B
8 lines
383 B
= form_for bike_condition, :html => { :class => 'form-horizontal' } do |f|
|
|
.control-group
|
|
= f.label :condition, :class => 'control-label'
|
|
.controls
|
|
= f.text_field :condition, :class => 'text_field'
|
|
.form-actions
|
|
= f.submit nil, :class => 'btn btn-primary'
|
|
= link_to t('.cancel', :default => t("helpers.links.cancel")), bike_conditions_path, :class => 'btn'
|
|
|