Jump to content

Module:Sports roster/default

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Frietjes (talk | contribs) at 16:03, 25 June 2019 (Created page with 'local pp = {} -- Roster format function pp.header(args, keys) return '' end function pp.players_roster(args, players, keys) return '' end function pp.coache...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local pp = {}

-- Roster format
function pp.header(args, keys)
	return ''
end

function pp.players_roster(args, players, keys)
	return ''
end

function pp.coaches_roster(args, coaches)
	return ''
end

function pp.staff_roster(args, staff)
	return ''
end

function pp.footer(args, keys)
	return ''
end

-- Navbox format
function pp.title(args, keys)
	return args['title']
end

function pp.titlestyle(args, keys)
	return args['titlestyle']
end

function pp.players_list(args, players, keys)
	return ''
end

function pp.coaches_list(args, coaches)
	return ''
end

function pp.below(args, keys)
	return args['below']
end

function pp.belowstyle(args, keys)
	return args['belowstyle']
end

return pp