Browse Source

Make it easy for users to copy/paste values from tables

Ensure every table cell contains something, even if it's just a
nonbreaking space.
tags/last-sinatra-version
Adrian Short 12 years ago
parent
commit
08f9741dac
2 changed files with 24 additions and 21 deletions
  1. +1
    -0
      public/style.css
  2. +23
    -21
      views/resultsdistrict.haml

+ 1
- 0
public/style.css View File

@@ -172,6 +172,7 @@ tr
color: white;
padding: 2px 5px;
font-weight: normal;
text-transform: uppercase;
}

.noborder


+ 23
- 21
views/resultsdistrict.haml View File

@@ -37,9 +37,9 @@

%table
%tr.header
%th
%th
%th
%th  
%th  
%th  
%th.right.highlight seats won
%th candidates
%th.right votes
@@ -59,25 +59,26 @@
%td.right= format_percent(row['total_votes'].to_f / @total_votes * 100)
%tr.footer
%td
%td
%td
%td  
%td  
%td  
%td.right.highlight= @total_seats
%td.right= @total_candidates
%td.right= commify(@total_votes)
%td
%td  


%h2 Votes by candidate
%table
%tr.header
%th
%th
%th
%th  
%th  
%th  
%th  
%th.right votes
%th.right % votes
%th
%th  

- count = 0
- for candidacy in @candidacies
@@ -89,7 +90,7 @@
%span.candidate_name.fn
%a{ :href => "/candidates/#{candidacy.candidate.id}" }
= candidacy.candidate.short_name
%br
%td
%span.candidate_party.org
= candidacy.party.name
@@ -97,15 +98,16 @@
%td.right= format_percent(candidacy.votes.to_f / @total_votes * 100)
%td
- if candidacy.seats == 1
.elected ELECTED
- if candidacy.seats == 1
%td.elected="Elected"
- else
%td  

%tr.footer
%td
%td
%td
%td  
%td  
%td  
%td  
%td.right= commify(@total_votes)
%td
%td
%td
%td  
%td  

Loading…
Cancel
Save