Module:Infobox Scenery: Difference between revisions
m
make actions optional
Tags: Undo Reverted |
Microbrews (talk | contribs) m (make actions optional) |
||
(5 intermediate revisions by 3 users not shown) | |||
Line 9:
local config = {
infobox_name = 'Scenery',
class = {Infobox.smw_param('episode')},
}
local params = {
parse.actions,
parse.name,
parse.image,
Line 17 ⟶ 19:
parse.premium,
parse.episode,
parse.description,
}
Line 38 ⟶ 41:
{tag='th', content='[[Premium Pass|Premium]]', colspan="6"},
{tag='td', content=Infobox.param('premium'), colspan="14"},
}
if infobox:is_param_defined(Infobox.param('actions')) > 0 then
infobox:add_row{
{tag='th', content='Actions', colspan="6"},
{tag='td', content=Infobox.param('actions'), colspan="14"}
}
end
infobox
:add_row{
{tag='th', content='Description', colspan="6"},
{tag='td', content=Infobox.param('description'), colspan="14"}
}
:pad(20)
|