add bootstrap, fix bike form

This commit is contained in:
loos
2014-03-02 11:49:33 -06:00
parent 4ea02cf5b2
commit ba0e665f6c
78 changed files with 9750 additions and 52 deletions
-1
View File
@@ -17,7 +17,6 @@ class BikesController < ApplicationController
def create
@bike = Bike.new(bike_params)
respond_to do |format|
if @bike.save
format.html { redirect_to @bike, notice: 'Bike was successfully created.' }
@@ -0,0 +1,3 @@
class StaticPagesController < ApplicationController
def home; end
end