Commit 357ba49c authored by royce-matthew's avatar royce-matthew

nicknaame field -tmunoz

parent 644873b5
...@@ -2,7 +2,7 @@ class Candidate < ActiveRecord::Base ...@@ -2,7 +2,7 @@ class Candidate < ActiveRecord::Base
validates :first_name, presence: true validates :first_name, presence: true
validates :nickname, presence: true validates :nickname, presence: true
validates :last_name, presence: true validates :last_name, presence: true
...@@ -22,4 +22,7 @@ class Candidate < ActiveRecord::Base ...@@ -22,4 +22,7 @@ class Candidate < ActiveRecord::Base
self.image_link self.image_link
end end
end end
def votesCount
self.votes.count
end
end end
\ No newline at end of file
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<%p.candidates.each do |c|%> <%p.candidates.each do |c|%>
<%total = total+c.votes.count%> <%total = total+c.votes.count%>
<%end%> <%end%>
<%p.candidates.each do |c|%> <%p.candidates.order('first_name').each do |c|%>
<tr><td><img class="candidate-image" style="background: url(<%=c.image%>); background-size:cover; background-position: 50% 50%; height:64px; width:64px; " width="64px" height="64px;"></td><td style="min-width: 250px;"><%=link_to c.full_name, admin_candidate_path(c.id), {:style =>"font-size:15 px;"}%></td><td style="min-width: 300px;"><%=c.slogan%></td><td><%=c.votes.count%></td> <tr><td><img class="candidate-image" style="background: url(<%=c.image%>); background-size:cover; background-position: 50% 50%; height:64px; width:64px; " width="64px" height="64px;"></td><td style="min-width: 250px;"><%=link_to c.full_name, admin_candidate_path(c.id), {:style =>"font-size:15 px;"}%></td><td style="min-width: 300px;"><%=c.slogan%></td><td><%=c.votes.count%></td>
<td> <progress value="<%=c.votes.count%>" max="<%=total%>" ></td> <td> <progress value="<%=c.votes.count%>" max="<%=total%>" ></td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment