Ver código fonte

Gracefully display elections which haven't yet been contested

tags/last-sinatra-version
Adrian Short 10 anos atrás
pai
commit
14e806be52
1 arquivos alterados com 16 adições e 4 exclusões
  1. +16
    -4
      views/candidate.haml

+ 16
- 4
views/candidate.haml Ver arquivo

@@ -31,9 +31,21 @@
%td
%a{ :href => "/bodies/#{ccy['body_slug']}/elections/#{ccy['d']}/#{ccy['districts_name']}/#{ccy['district_slug']}" }
= ccy['district_name']
%td.right= commify(ccy['votes'])
%td.right= to_ordinal(ccy['position'])
%td= ccy['seats'] == 1 ? "Elected" : "Not elected"
- if ccy['votes'].nil? # election results not yet available
%td.right —
%td.right —
%td.right —
- else
%td.right= commify(ccy['votes'])
%td.right= to_ordinal(ccy['position'])
%td= ccy['seats'] == 1 ? "Elected" : "Not elected"

.warning
This might not be the complete electoral history for this candidate. They might have stood in elections outside Sutton and / or in Sutton elections for which we don't have data.
%p
This might not be the complete electoral history for this candidate. They might have stood in elections outside Sutton and / or in Sutton elections for which we don't have data.

%p
Some candidates have more than one profile page due to them using slightly different names in different elections. See the full
%a{ :href => "/candidates/##{@candidate.surname[0]}" }<
candidates list
for details.

Carregando…
Cancelar
Salvar