Content deleted Content added
Build rows |
Continue building |
||
Line 50:
-- Now build the rows
table.insert(t,'|-<br>') -- New row
table.insert(t,'! scope="row" style="text-align: center; background-color: transparent"|'..ii..'<br>') -- Position number
table.insert(t,'| style="text-align: left; white-space:nowrap"|'..Args[team_list[ii]]..'<br>') -- Team
table.insert(t,'|'..games..'<br>') -- Played
table.insert(t,'|'..wins..'<br>') -- Won
table.insert(t,'|'..draws..'<br>') -- Drawn
table.insert(t,'|'..lost..'<br>') -- Lost
table.insert(t,'|'..gfor..'<br>') -- GF
table.insert(t,'|'..gaig..'<br>') -- GA
table.insert(t,'|'..gdiff..'<br>') -- GD
table.insert(t,'| style="font-weight: bold;" |'..point..'<br>') -- Points
end
|