Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
parkinglot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
evilla_gomez_guian_principe
parkinglot
Commits
5f5e42da
Commit
5f5e42da
authored
Jul 05, 2016
by
Galen Evilla
Browse files
Options
Browse Files
Download
Plain Diff
bootstrap additions
parents
5cd59577
f29f6e6f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
3 deletions
+32
-3
car_logs_controller.rb
draft3/app/controllers/car_logs_controller.rb
+5
-3
index.html.erb
draft3/app/views/car_logs/index.html.erb
+26
-0
routes.rb
draft3/config/routes.rb
+1
-0
No files found.
draft3/app/controllers/car_logs_controller.rb
View file @
5f5e42da
...
...
@@ -28,9 +28,11 @@ class CarLogsController < ApplicationController
def
delete
car_log_to_delete
=
CarLog
.
find
(
record
.
id
)
car_log_to_delete
.
destroy!
id
=
params
[
:id
]
@records
=
CarLog
.
find
(
id
.
to_i
)
@records
.
destroy
redirect_to
(
"/car_logs"
)
end
end
\ No newline at end of file
draft3/app/views/car_logs/index.html.erb
View file @
5f5e42da
...
...
@@ -10,9 +10,35 @@
<input
type=
"text"
name=
"q"
>
<input
type=
"submit"
value=
"Search"
>
<
<<<<<<
HEAD
<%
end
%>
<
hr
>
=======
<table
border=
"1"
>
<tr>
<th>
ID
</th>
<th>
Plate Number
</th>
<th>
Time In
</th>
<th>
Time Out
</th>
<th>
Color
</th>
<th>
Brand
</th>
<th>
</th>
</tr>
<%
@records
.
each
do
|
record
|
%>
<tr>
<td>
<%=
record
.
id
%>
</td>
<td>
<%=
record
.
plate_number
%>
</td>
<td>
<%=
record
.
time_in
%>
</td>
<td>
<%=
record
.
time_out
%>
</td>
<td>
<%=
record
.
color
%>
</td>
<td>
<%=
record
.
brand
%>
</td>
<td><a
href=
"car_logs/delete/
<%=
record
.
id
%>
"
>
Delete
</a></td>
</tr>
<%
end
%>
</table>
>>>>>>> f29f6e6f3bad719145aa72a906ddf1f42183c4fe
<table
class=
"table table-striped table-bordered"
>
<thead>
...
...
draft3/config/routes.rb
View file @
5f5e42da
...
...
@@ -5,5 +5,6 @@ Rails.application.routes.draw do
get
"/car_logs"
,
to:
"car_logs#index"
,
as: :carlogs
get
"/create_new"
,
to:
"car_logs#create_page"
post
"/car_logs/create"
,
to:
"car_logs#create"
get
"/car_logs/delete/:id"
,
to:
"car_logs#delete"
end
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment