Content deleted Content added
No edit summary |
No edit summary |
||
Line 108:
if divname == division then
local rowcolor = nil
if
rowcolor = highlight
end
row = root:tag('tr'):css('background-color', rowcolor)
-- team name
row:tag('td'):css('text-align', 'left'):wikitext(team)
-- wins
row:tag('td'):wikitext(hw + rw)
Line 187:
end
local rowcolor = nil
if
rowcolor = highlight
end
Line 194:
row:tag('th'):wikitext(pos)
-- team name
row:tag('td'):css('text-align', 'left'):wikitext(team)
-- wins
row:tag('td'):wikitext(hw + rw)
|