Module:Sports roster/default
Appearance
![]() | This module is rated as beta, and is ready for widespread use. It is still new and should be used with some caution to ensure the results are as expected. |
Usage
This submodule is used by Module:Sports roster when |style=
is undefined, or when |style=default
, or when the requested style submodule does not exist.
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