Commit 475f9ba1 authored by Wills Gomez's avatar Wills Gomez

changed profile for finals

parent 0f4f790b
......@@ -3,17 +3,36 @@
<div class="col-md-12">
<h2>Hey <%=current_user.first_name%>!</h2>
<br>
You Voted for:
<h4>You Voted for:</h4>
<br>
<ul>
<%current_user.votes.each do |v|%>
<li>
<%="#{v.candidate.position.name}: #{v.candidate.full_name}"%>
<p>
Comments: <%=v.comment%>
</p>
</li>
<%end%>
<% if @positions.size > 0 %>
<ul>
<%@positions.each do |p|%>
<h3> <li><%=p.name%><br>
<%voted_for = false%>
<% if p.candidates.size > 0 %>
<% p.candidates.each do |c|%>
<%c.votes.each do |v|%>
<%if v.user_id == current_user.id%>
<h4><%= v.candidate.full_name %></h4>
<p>
<h5>Comments: <%=v.comment%></h5>
<%voted_for = true%>
<% end %>
<br>
<%end%>
<% end %>
<% else %>
<h5></h5>
<%end%>
</li>
</h3>
<%end%>
</ul>
<%else%>
<h5></h5>
<%end%>
</ul>
</div>
</div>
......
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