Louis | Adds clients model & views to db

This commit is contained in:
Loos
2014-09-16 20:50:58 -04:00
parent 3c8962fa49
commit d3403e18cd
17 changed files with 237 additions and 21 deletions
+19 -7
View File
@@ -50,12 +50,24 @@ class BikesController < ApplicationController
end
def bike_params
params.require(:bike).permit(:entry_date, :brand, :model,
:type, :color, :frame_size,
:log_number, :purpose, :serial_number,
:notes, :tag_info, :mechanic,
:completion_date, :price,
:top_tube_size, :seat_tube_size,
:created_at, :updated_at)
params.require(:bike).permit(
:entry_date,
:brand,
:model,
:type,
:color,
:frame_size,
:log_number,
:purpose,
:serial_number,
:notes,
:tag_info,
:mechanic,
:completion_date,
:price,
:top_tube_size,
:seat_tube_size,
:created_at,
:updated_at)
end
end
+65
View File
@@ -0,0 +1,65 @@
class ClientsController < ApplicationController
before_action :set_client, only: [:show, :edit, :update, :destroy]
before_action :authenticate_user!
def index
@clients = Client.all
end
def show
end
def new
@client = Client.new
end
def edit
end
def create
@client = Client.new(client_params)
respond_to do |format|
if @client.save
format.html { redirect_to @client, notice: 'Client was successfully created.' }
else
format.html { render action: 'new' }
end
end
end
def update
respond_to do |format|
if @client.update(client_params)
format.html { redirect_to @client, notice: 'Client was successfully updated.' }
else
format.html { render action: 'edit' }
end
end
end
def destroy
@client.destroy
respond_to do |format|
format.html { redirect_to clients_url }
end
end
private
def set_client
@client = Client.find(params[:id])
end
def client_params
params.require(:client).permit(
:first_name,
:last_name,
:application_date,
:gender,
:age,
:weight,
:helmet,
:lock,
:agency,
:completion_date)
end
end
+2
View File
@@ -0,0 +1,2 @@
class Client < ActiveRecord::Base
end
+49
View File
@@ -0,0 +1,49 @@
- disabled ||= false
.form-horizontal
.form-group
= f.label "First Name", class: "col-sm-2 control-label"
.col-sm-10
= f.text_field :first_name, class: "form-control", disabled: disabled
.form-group
= f.label "Last Name", class: "col-sm-2 control-label"
.col-sm-10
= f.text_field :last_name, class: "form-control datepicker", disabled: disabled
.form-group
= f.label "Gender", class: "col-sm-2 control-label"
.col-sm-10
= f.text_field :gender, class: "form-control", disabled: disabled
.form-group
= f.label "Age", class: "col-sm-2 control-label"
.col-sm-10
= f.text_field :age, class: "form-control", disabled: disabled
.form-group
= f.label "Weight", class: "col-sm-2 control-label"
.col-sm-10
= f.text_field :weight, class: "form-control", disabled: disabled
.form-group
= f.label "Application Date:", class: "col-sm-2 control-label"
.col-sm-10
= f.text_field :application_date, class: "form-control", disabled: disabled
.form-group
= f.label "Helmet", class: "col-sm-2 control-label"
.col-sm-10
= f.check_box :helmet, class: "form-control", disabled: disabled
.form-group
= f.label "Lock", class: "col-sm-2 control-label"
.col-sm-10
= f.check_box :lock, class: "form-control", disabled: disabled
.form-group
= 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
+12
View File
@@ -0,0 +1,12 @@
.container
= form_for @client, html: {class: 'form-horizontal'} do |f|
- if @client.errors.any?
#error_explanation
%h2= pluralize(@client.errors.count, "error") + " prohibited this bike from being saved:"
%ul
- @client.errors.full_messages.each do |msg|
%li= msg
= render 'fields', f: f
.row
.actions.col-sm-offset-2
= f.submit class: "btn btn-default"
+6
View File
@@ -0,0 +1,6 @@
.container
%h1 Editing client
= render 'form'
= link_to 'Show', @client
|
= link_to 'Back', clients_path
+24
View File
@@ -0,0 +1,24 @@
.container
%h1 Clients
%table.table.table-striped.table-bordered.table-hover
%thead
%tr
%th First Name
%th Last Name
%th Agency
%th
%th
%th
%tbody
- @clients.each do |client|
%tr
%td= client.first_name
%td= client.last_name
%td= client.agency
%td= link_to 'Show', client
%td= link_to 'Edit', edit_client_path(client)
%td= link_to 'Destroy', client, method: :delete, data: { confirm: 'Are you sure?' }
%br
= link_to ' + New Client', new_client_path, class: "btn btn-default"
+3
View File
@@ -0,0 +1,3 @@
%h1 New Client
= render 'form'
= link_to 'Back', clients_path
+7
View File
@@ -0,0 +1,7 @@
.container
%p#notice= notice
= form_for(@client) do |f|
= render 'fields', f: f, disabled: true
= link_to 'Edit', edit_client_path(@client)
|
= link_to 'Back', clients_path
+1 -1
View File
@@ -12,7 +12,7 @@
<div class="navbar-collapse collapse navbar-responsive-collapse" id='collapse-1'>
<ul class="nav navbar-nav navbar-right">
<li><%= link_to "Bikes", bikes_path %></li>
<li><%= link_to "Volunteers", volunteers_path %></li>
<li><%= link_to "Clients", clients_path %></li>
</ul>
</div>
</nav>