Content deleted Content added
(Wikiplus) |
No edit summary |
||
Line 4:
local p = {}
local function won(
return ' style="vertical-align: middle; text-align: center; background-color: #9F9;' .. (style or '') .. '" |' .. text
end
local function nom(
return ' style="vertical-align: middle; text-align: center; background-color: #FDD;' .. (style or '') .. '" |' .. text
end
local function core(
if args['award' .. i] == nil then return end
local ret
Line 21 ⟶ 19:
'|- style="background-color: #ddddff;"' .. '\n' ..
'| style="text-align: center; font-weight: bold;" | ' .. args['award' .. i] .. '\n' ..
'|' .. won(
'|' .. nom(
return ret
Line 29 ⟶ 27:
function p.main(frame)
local args = getArgs(frame)
return p._main(args)
end
Line 35 ⟶ 32:
function p._main(args)
-- Main module code goes here.
local ret, temp = '', ''
local winTotal, nomTotal = 0, 0
ret =
'{| class="infobox" style="width: 20em
'|+ style="font-size: 9pt; font-weight: bold;" | List of accolades<i>' .. (args.title and (' received by' .. args.title) or '') .. '</i>\n'
if args.image then
ret = ret .. '|-\n'
ret = ret .. '| colspan="3" style="text-align: center;" | ' .. args.image .. '\n' .. (args.caption and ('<
end
for i = 1, 99 do
if args['award' .. i] then
temp = temp .. core(
winTotal = winTotal + args['won' .. i]
nomTotal = nomTotal + args['nom' .. i]
Line 57 ⟶ 53:
if temp ~= '' then
ret = ret ..
'|-\n' .. '
'{| class="collapsible collapsed" style="width: 100%;" |\n' ..
'! colspan=3 style="background-color: #D9E8FF; text-align: center;" | Accolades\n' ..
'|-\n' ..
'|- style="background-color: #D9E8FF; font-weight: bold;"\n' ..
'| style="text-align:center;" | Award\n' ..
'| style="text-align:center; background: #cceecc; text-size:0.9em; width: 5.8em; | Won\n' ..
'| style="text-align:center; background: #ffccdd; text-size:0.9em; width: 5.8em;"| Nominated\n' ..
temp ..
'|}\n'
Line 66 ⟶ 68:
if args.totals ~= 'no' then
local
local
if
else
ret = ret ..
Line 74 ⟶ 76:
'|-style="background:#d9e8ff;"\n' ..
'| style="text-align:center;" colspan="3"| <b>Total number of awards and nominations</b>\n' ..
'|- style="font-weight: bold;"\n' ..
'|' ..
'|' ..
'|' ..
end
end
Line 84 ⟶ 86:
ret = ret ..
'|- style="background:#d9e8ff;"\n' ..
'| colspan="3" style="font-size: smaller; text-align:center;"| [[#References|Footnotes]]\n' ..
'|}'
end
|