Module:Infobox Scenery: Difference between revisions

no edit summary
(Created page with "local p = {} local Infobox = require('Module:Infobox') local parse = require('Module:Param Parse') function p.main(frame) local args = frame:getParent().args local config = { infobox_name = 'Scenery', } local params = { parse.name, parse.image, parse.release, parse.premium, parse.episode, } local infobox = Infobox.new(config, params, args) infobox :add_row{ {tag='th', content=Infobox.param('name'), class='infobox-header', colspan='20'},...")
 
No edit summary
 
(4 intermediate revisions by 3 users not shown)
Line 9:
local config = {
infobox_name = 'Scenery',
class = {Infobox.smw_param('episode')},
}
Line 17 ⟶ 18:
parse.premium,
parse.episode,
parse.examine,
}
Line 38 ⟶ 40:
{tag='th', content='[[Premium Pass|Premium]]', colspan="6"},
{tag='td', content=Infobox.param('premium'), colspan="14"},
}
:add_row{
{tag='th', content='Examine', colspan="6"},
{tag='td', content=Infobox.param('examine'), colspan="14"}
}
:pad(20)