Module:Proposal support: Difference between revisions

From Tardis Wiki, the free Doctor Who reference
No edit summary
No edit summary
Line 9: Line 9:
supporters = supporters + 1
supporters = supporters + 1
end
end
local final = '<div data-sort-value="' .. supporters .. '">' .. list .. '\n</div>'
local s = "s"
if supporters == 1 then s = "" end
local final = '<div data-sort-value="' .. supporters .. '">' .. supporters .. 'supporter' .. s .. list .. '\n</div>'
return final
return final
end
end


return p
return p

Revision as of 07:56, 5 January 2023

Documentation for this module may be created at Module:Proposal support/doc

local p = {}

function p.proposalSupport(frame)
	local args = frame:getParent().args
	local supporters = 0
	local list = ""
	for _, sig in ipairs(args) do
		list = list .. "\n* " .. sig
		supporters = supporters + 1
	end
	local s = "s"
	if supporters == 1 then s = "" end
	local final = '<div data-sort-value="' .. supporters .. '">' .. supporters .. 'supporter' .. s .. list .. '\n</div>'
	return final
end

return p