Tu banner alternativo

Module:RfX tally

In today's world, Module:RfX tally has become a topic of great relevance and interest to a wide audience. With the advancement of technology and constant changes in society, Module:RfX tally has generated a significant impact on various aspects of life. Both on a personal and global level, Module:RfX tally has generated debates, reflections and actions that seek to understand and effectively address the challenges and opportunities that this topic presents. In this article, we will explore different facets of Module:RfX tally, from its origins to its influence in the contemporary world, with the aim of offering a comprehensive vision that invites reflection and dialogue.

Tu banner alternativo

local p = {}
local rfx = require("Module:Rfx")
function p.main(frame)
	local title = mw.text.trim(frame.args)
	local obj
	if title == nil or #title == 0 then
		obj = rfx.new(mw.title.getCurrentTitle().fullText)
	else
		obj = rfx.new("Wikipedia:Requests for bureaucratship/" .. title)
		if obj == nil then
			obj = rfx.new("Wikipedia:Requests for adminship/" .. title)
		end	
	end
	if obj == nil then
		return "(?/?/?)"
	else
		return string.format("(%s/%s/%s)",obj.supports or "?",obj.opposes or "?",obj.neutrals or "?")
	end
end
return p