Louis | Remove failing autogenerated tests, fix bug where bike type wasn't saving

This commit is contained in:
Loos
2014-09-17 09:12:16 -04:00
parent d3403e18cd
commit 4d49cf829f
18 changed files with 47 additions and 137 deletions
+8
View File
@@ -43,7 +43,15 @@
= f.label "Agency", class: "col-sm-2 control-label"
.col-sm-10
= f.text_field :agency, class: "form-control", disabled: disabled
.form-group
= f.label "Completion Date:", class: "col-sm-2 control-label"
.col-sm-10
= f.text_field :completion_date, class: "form-control datepicker", disabled: disabled
.form-group
= f.label "Type:", class: "col-sm-2 control-label"
.col-sm-10
= f.select(:bike_id, Bike.all.collect {|b| [ b.model, b.id ] }, {include_blank: 'None'})