diff options
author | emkael <emkael@tlen.pl> | 2017-07-31 14:32:55 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-07-31 14:32:55 +0200 |
commit | 1a0d4323cd25b1653663013ca3183fb0b67a878e (patch) | |
tree | 394753a2d5323785af5f6eb4965d7cc7b3c562c6 | |
parent | fe210ab9a010cd89dad111fd30d297d82cdd28d9 (diff) |
<tr> classes indicating winners/losers of completed matches
-rw-r--r-- | playoff.py | 2 | ||||
-rw-r--r-- | playoff/template.py | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -53,6 +53,8 @@ def get_match_table(match): rows = '' for team in match.teams: rows += p_temp.MATCH_TEAM_ROW % ( + ' '.join(['winner' if team.name == match.winner else '', + 'loser' if team.name == match.loser else '']).strip(), match.link, team.name, ' / '.join([get_shortname(name) for name in team.name.split('<br />')]), diff --git a/playoff/template.py b/playoff/template.py index 5a282e3..8648a67 100644 --- a/playoff/template.py +++ b/playoff/template.py @@ -11,7 +11,7 @@ MATCH_TABLE = ''' ''' MATCH_TEAM_ROW = ''' -<tr> +<tr class="%s"> <td class="bd1"> <a href="%s" onmouseover="Tip('%s')" onmouseout="UnTip()">%s</a> </td> <td class="bdc"> <a href="%s" target="_top"> |