Commit 24e7ad0a authored by Galen Evilla's avatar Galen Evilla

last na

parent b12fafe5
......@@ -8,8 +8,9 @@
<hr>
<h2><center>Hello, <%= current_user.full_name %>!</center></h2>
<h4>Vote now for:</h4>
<ul>
<% if @positions.size > 0 %>
<h4>Vote now for:</h4>
<ul>
<%@positions.each do |p|%>
<li><%=p.name%><br>
<%voted_for = false%>
......@@ -17,7 +18,7 @@
<% p.candidates.each do |c|%>
<%c.votes.each do |v|%>
<%if v.user_id == current_user.id%>
You have already voted for <%= v.candidate.full_name%>
You have already voted for <%= v.candidate.full_name %>
<%voted_for = true%>
<% end %>
<%end%>
......@@ -31,7 +32,11 @@
<%end%>
</li>
<%end%>
</ul>
</ul>
<%else%>
<h5>No available candidates to vote for.</h5>
<%end%>
<hr>
<br>
</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