no edit summary
Donutisabot (talk | contribs) |
|||
local m_team = require('Module:Team')
local League = require('Module:League').league
local placement =
local Game = require('Module:Game').game
for _,row in ipairs(result) do
mw.log('result')
tr = tbl:tag("tr")
tr:tag('td'):wikitext(Game{row['Game']}):done()
tr:tag("td"):css({ ['white-space'] = 'nowrap' }):wikitext(row["Date"]):done() -- Need to format this right still
:node(placement.makeNode(row.Place))
:tag("td"):wikitext(row["PrizeMarkup"]):done()
tdEvent = tr:tag("td"):wikitext(League{row["League"],"onlyimage"} .. " [[" .. row["EventLink"] .. "|" .. row["Event"])
local m_team = require('Module:Team')
local League = require('Module:League').league
local placement =
local Game = require('Module:Game').game
for _,row in ipairs(result) do
mw.log('result')
tr = tbl:tag("tr")
tr:tag('td'):wikitext(Game{row['Game']}):done()
tr:tag("td"):css({ ['white-space'] = 'nowrap' }):wikitext(row["Date"]):done() -- Need to format this right still
:node(placement.makeNode(row.Place))
:tag("td"):wikitext(row["PrizeMarkup"]):done()
tdEvent = tr:tag("td"):wikitext(League{row["League"],"onlyimage"} .. " [[" .. row["EventLink"] .. "|" .. row["Event"])
|