Browse Source

Added bike models controller and views

denney-disable-on-select
Jason Denney 12 years ago
parent
commit
747b8d9c4b
  1. 30
      app/controllers/bike_models_controller.rb
  2. 12
      app/views/bike_models/_form.html.haml
  3. 17
      app/views/bike_models/index.html.haml
  4. 4
      app/views/bike_models/new.html.haml
  5. 15
      app/views/bike_models/show.html.haml
  6. 1
      config/routes.rb

30
app/controllers/bike_models_controller.rb

@ -0,0 +1,30 @@
class BikeModelsController < AuthenticatedController
expose(:bike_model) do
if params[:id]
BikeModel.find(params[:id])
elsif params[:bike_model]
BikeModel.new(params[:bike_model])
else
BikeModel.new
end
end
expose(:bike_models) { BikeModel.order('id').paginate(:page => params[:page]) }
def index
end
def show
end
def new
end
def create
if bike_model.save
redirect_to bike_models_url
else
render :new
end
end
end

12
app/views/bike_models/_form.html.haml

@ -0,0 +1,12 @@
= form_for bike_model, :html => { :class => 'form-horizontal' } do |f|
.control-group
= f.label :model, :class => 'control-label'
.controls
= f.text_field :model, :class => 'text_field'
.control-group
= f.label :bike_brand_id, :class => 'control-label'
.controls
= f.number_field :bike_brand_id, :class => 'number_field'
.form-actions
= f.submit nil, :class => 'btn btn-primary'
= link_to t('.cancel', :default => t("helpers.links.cancel")), bike_models_path, :class => 'btn'

17
app/views/bike_models/index.html.haml

@ -0,0 +1,17 @@
- model_class = BikeModel.new.class
.page-header
%h1=t '.title', :default => model_class.model_name.human.pluralize
%table.table.table-striped
%thead
%tr
%th= model_class.human_attribute_name(:id)
%th= model_class.human_attribute_name(:model)
%th= model_class.human_attribute_name(:bike_brand_id)
%tbody
- bike_models.each do |bike_model|
%tr
%td= link_to bike_model.id, bike_model_path(bike_model)
%td= bike_model.model
%td= link_to bike_model.brand, bike_brand_path(bike_model.brand)
= will_paginate bike_models
= link_to t('.new', :default => t("helpers.links.new")), new_bike_model_path, :class => 'btn btn-primary'

4
app/views/bike_models/new.html.haml

@ -0,0 +1,4 @@
- model_class = @bike_model.class
.page-header
%h1=t '.title', :default => t('helpers.titles.new', :model => model_class.model_name.human, :default => "New #{model_class.model_name.human}")
= render :partial => "form"

15
app/views/bike_models/show.html.haml

@ -0,0 +1,15 @@
- model_class = bike_model.class
.page-header
%h1=t '.title', :default => model_class.model_name.human
%p
%strong= model_class.human_attribute_name(:model) + ':'
%br
= bike_model.model
%p
%strong= model_class.human_attribute_name(:bike_brand_id) + ':'
%br
= link_to bike_model.brand, bike_brand_path(bike_model.brand)
.form-actions
= link_to t('.back', :default => t("helpers.links.back")), bike_models_path, :class => 'btn'

1
config/routes.rb

@ -8,6 +8,7 @@ Velocipede::Application.routes.draw do
match 'site/index' => 'site#index'
resources :bike_brands, :except => [:edit, :delete]
resources :bike_models, :except => [:edit, :delete]
#resources :clues
#resources :maps

Loading…
Cancel
Save