Commit a1448dc5 authored by Jasmine Principe's avatar Jasmine Principe

alignments

parent a3f5bfef
<%= simple_form_for([:admin, @candidate]) do |f| %>
<%= f.association :position, label: 'Position: '%>
<%= f.input :first_name, label: 'First Name: '%>
<%= f.input :last_name, label: 'Last Name: '%>
<%= f.input :slogan, label: 'Slogan: '%>
<%= f.association :position, label: 'Position: '%>
<%= f.submit %>
<% end %>
<% provide(:candidate, "active") %>
<% provide(:title, "Candidates") %>
<style>
h1{
letter-spacing: 2px;
}
</style>
<div class ="container">
<div class="row">
<div class="col-md-12">
<left>
<h1>Candidates</h1>
<h1>CANDIDATES</h1>
<%= button_to "Add a Candidate", new_admin_candidate_path, :method => "get" %>
</left>
<%@positions.each do |p|%>
......
......@@ -3,12 +3,12 @@
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>New Candidate</h1>
<h1>New Candidate</h1>
<div class="col-md-3">
<br>
<%= render partial: "form" %>
<%= link_to "Back to Candidates", admin_candidates_path %>
<br>
<%= link_to "< Back to Candidates", admin_candidates_path %>
</div>
</div>
</div>
<% provide(:position, "active") %>
<% provide(:title, "Positions") %>
<style>
h1{
letter-spacing: 2px;
}
</style>
<div class ="container">
<div class="row">
<div class="col-md-12">
<left>
<h1>Positions</h1>
<h1>POSITIONS</h1>
<%=button_to "Create a Position", new_admin_position_path, :method => "get" %>
</left>
<%@positions.each do |p|%>
......
......@@ -3,12 +3,12 @@
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>New Position</h1>
<h1>New Position</h1>
<div class="col-md-3">
<br>
<%= render partial: "form" %>
<%= link_to "Back to Candidates", admin_candidates_path %>
<br>
<%= link_to "< Back to Candidates", admin_candidates_path %>
</div>
</div>
</div>
......
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="col-md-3">
<h2>Sign up</h2>
<%= simple_form_for(resource, as: resource_name, url: registration_path(resource_name), :html => { :role => 'form'}) do |f| %>
......
......@@ -7,7 +7,7 @@
%>
<%= simple_form_for([:voting, @vote]) do |f| %>
I cast my vote for
<%= f.association :candidate, collection: Candidate.where(position_id:@pos), label_method: :full_name, value_method: :id %>
<%= f.input :comment, label: 'Comment:'%>
<%= f.submit label: 'Cast Vote' %>
......
......@@ -11,7 +11,7 @@
<h4>Vote now for:</h4>
<ul>
<%@positions.each do |p|%>
<li><%=p.name%><br>
<br>
<%voted_for = false%>
<% p.candidates.each do |c|%>
<%c.votes.each do |v|%>
......@@ -26,7 +26,7 @@
<%=link_to "Vote for a #{p.name}", "/voting/new/#{p.id}" %>
<%else%>
<%end%>
</li>
<%end%>
</ul>
<hr>
......
......@@ -3,12 +3,13 @@
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="col-md-3">
<h1>Vote</h1>
<%= render partial: "form" %>
<%= link_to "Back to Votes", voting_votes_path %>
<br>
<%= link_to "< Back to Votes", voting_votes_path %>
</div>
</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