X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/dc7d60a0de460c72d292b43616eb97a8b34741c8..c933ff40da110253bc4c474d9c79c3a4ed98721d:/app/views/election/list.rhtml diff --git a/app/views/election/list.rhtml b/app/views/election/list.rhtml new file mode 100644 index 0000000..83be6c6 --- /dev/null +++ b/app/views/election/list.rhtml @@ -0,0 +1,35 @@ +<% %> +

Listing elections

+ + + +<% for election in @elections %> + + + + + +<% end %> +

<%= link_to election.name, :action => 'show', :id => election %>

+

Description:

+
<%= election.description %>
+ +

Election Information:

+
    +
  • <%= election.voters.length %> registered voters
  • +
  • <%= "Not " unless election.anonymous == 1 %>Anonymous
  • +
  • Starts <%= election.startdate %>
  • +
  • Ends <%= election.enddate %>
  • +
+
+

Candidates:

+ <% @election = election %><%= render :partial => 'candidate_list', :id => election.id %> +
+ <%= link_to 'Destroy', { :action => 'destroy', :id => election }, :confirm => 'Are you sure?' %>
+ +<%= link_to 'Previous page', { :page => @election_pages.current.previous } if @election_pages.current.previous %> +<%= link_to 'Next page', { :page => @election_pages.current.next } if @election_pages.current.next %> + +
+ +<%= link_to 'New election', :action => 'new' %>