Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
MIS21FinalsElection
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
Dean Krisitan Bardeloza
MIS21FinalsElection
Commits
4a293966
Commit
4a293966
authored
Jul 21, 2016
by
Bianca Tarun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
edited user profile
parent
bd423676
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
18 deletions
+18
-18
votes_controller.rb
Election/app/controllers/votes_controller.rb
+4
-0
vote.rb
Election/app/models/vote.rb
+1
-1
index.html.erb
Election/app/views/pages/index.html.erb
+1
-1
user_profile.html.erb
Election/app/views/votes/user_profile.html.erb
+12
-16
No files found.
Election/app/controllers/votes_controller.rb
View file @
4a293966
...
@@ -24,7 +24,11 @@ class VotesController < ApplicationController
...
@@ -24,7 +24,11 @@ class VotesController < ApplicationController
end
end
def
profile
def
profile
@positions
=
Position
.
all
@candidates
=
Candidate
.
all
@user
=
current_user
@votes
=
current_user
.
votes
@votes
=
current_user
.
votes
render
"votes/user_profile.html.erb"
end
end
private
private
...
...
Election/app/models/vote.rb
View file @
4a293966
...
@@ -5,5 +5,5 @@ class Vote < ActiveRecord::Base
...
@@ -5,5 +5,5 @@ class Vote < ActiveRecord::Base
def
to_s
def
to_s
"
#{
candidate
.
first_name
}
#{
candidate
.
last_name
}
"
"
#{
candidate
.
first_name
}
#{
candidate
.
last_name
}
"
end
end
accepts_nested_attributes_for
:votes
#
accepts_nested_attributes_for :votes
end
end
Election/app/views/pages/index.html.erb
View file @
4a293966
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
</tr>
</tr>
<%
p
.
candidates
.
each
do
|
candidate
|
%>
<%
p
.
candidates
.
each
do
|
candidate
|
%>
<td>
<%=
candidate
.
first_name
%>
<%=
candidate
.
last_name
%>
</td>
<td>
<%=
candidate
.
first_name
%>
<%=
candidate
.
last_name
%>
</td>
<td>
<%=
candidate
.
votes
.
count
%>
</td>
<td>
<%=
Vote
.
where
(
candidate_id:
candidate
.
id
)
.
count
%>
</td>
<%
end
%>
<%
end
%>
</table>
</table>
<%
end
%>
<%
end
%>
...
...
Election/app/views/votes/user_profile.html.erb
View file @
4a293966
<h1>
Profile Page
</h1>
<h1>
Profile Page
</h1>
<h2>
<%=
@user
.
first_name
%>
<%=
@
user
.
last_name
%>
</h2>
<h2>
<%=
current_user
.
id
%>
<%=
current_user
.
first_name
%>
<%=
current_
user
.
last_name
%>
</h2>
<hr>
<hr>
<table
class=
"table table-striped"
>
<h2>
Positions
</h2>
<thead>
<%
@positions
.
each
do
|
p
|
%>
<th>
Vote ID
</th>
<h3>
<%=
p
.
name
%>
</h3>
<th>
Candidate Voted
</th>
<%
p
.
candidates
.
each
do
|
c
|
%>
<th>
Voted on
</th>
<%
c
.
votes
.
each
do
|
v
|
%>
</thead>
<%
if
v
.
user_id
==
current_user
.
id
%>
<tbody>
<%=
v
.
candidate
.
first_name
%>
<%=
v
.
candidate
.
last_name
%>
<%=
v
.
comments
%>
<%
@votes
.
each
do
|
v
|
%>
<%
else
%>
<tr>
<%
end
%>
<td>
<%=
v
.
id
%>
</td>
<td>
<%=
v
.
candidate
.
first_name
%>
"
<%=
v
.
candidate
.
nickname
%>
"
<%=
v
.
candidate
.
last_name
%>
</td>
<td>
<%=
v
.
created_at
%>
</td>
</tr>
<%
end
%>
<%
end
%>
</tbody
>
<%
end
%
>
</table
>
<%
end
%
>
<hr>
<hr>
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