Module:Proposal support
From Tardis Wiki, the free Doctor Who reference
Documentation for this module may be created at Module:Proposal support/doc
local p = {}
local dump = require('Module:SMW').dump
function p.proposalSupport(frame)
local args = frame:getParent().args
return dump(args)
--[[local supporters = #args
local list = ""
for i=1, #args do
list = list .. "\n* " .. args[i]
end
local final = '<div data-sort-value="' .. supporters .. '">' .. list .. '\n</div>'
return final]]--
end
return p