mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-03-01 01:03:23 -05:00
9 lines
372 B
Plaintext
9 lines
372 B
Plaintext
|
= form_for bike_status, :html => { :class => 'form-horizontal' } do |f|
|
||
|
.control-group
|
||
|
= f.label :status, :class => 'control-label'
|
||
|
.controls
|
||
|
= f.text_field :status, :class => 'text_field'
|
||
|
.form-actions
|
||
|
= f.submit nil, :class => 'btn btn-primary'
|
||
|
= link_to t('.cancel', :default => t("helpers.links.cancel")), bike_statuses_path, :class => 'btn'
|