Skip to content

Commit

Permalink
Merge branch 'master' of github.com:jtrain/nmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jtrain committed Mar 11, 2012
2 parents 81dd36f + e7e2972 commit b5a5dcf
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion views/index.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,20 @@ td .btn, table {
<td>
{{ game.home_name}}
</td>
<td>{{ game.home_score }} - {{ game.away_score }}</td>
<td>
%if game.home_score == None:
vs
%else:
<div class='score hidden {{game.home_name}}
{{game.away_name}}'>
{{ game.home_score }} - {{ game.away_score }}
</div>
<div class='noscore {{game.home_name}}
{{game.away_name}}'>
? - ?
</div>
%end
</td>
<td>
{{ game.away_name}}
</td>
Expand Down

0 comments on commit b5a5dcf

Please sign in to comment.