Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
adrianshort
/
suttonelections
mirror da
https://github.com/adrianshort/suttonelections.git
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Rilasci
2
Wiki
Attività
Sfoglia il codice sorgente
Drop sex from candidates
tags/last-sinatra-version
Adrian Short
10 anni fa
parent
1b9b16907a
commit
611cdbb1a0
2 ha cambiato i file
con
2 aggiunte
e
3 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+1
-2
models.rb
+1
-1
scripts/merge-candidates.rb
+ 1
- 2
models.rb
Vedi File
@@ -90,8 +90,7 @@ class Candidate
property :id, Serial
property :forenames, String, :required => true
property :surname, String, :required => true, :index => true
property :sex, String
has n, :candidacies
def short_name
+ 1
- 1
scripts/merge-candidates.rb
Vedi File
@@ -5,7 +5,7 @@ def show_candidate(id)
template = "%6s\t%50s\t%20s\t%3s"
puts template % [ c.id, c.forenames, c.surname
, c.sex
]
puts template % [ c.id, c.forenames, c.surname ]
ccy_template = "%20s\t%15s\t%20s\t%20s"
c.candidacies.each do |ccy|
Scrivi
Anteprima
Caricamento…
Annulla
Salva