mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-03-01 01:03:23 -05:00
9 lines
383 B
Plaintext
9 lines
383 B
Plaintext
|
= 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'
|