Bu modulun sənədləşdirmə səhifəsi Modul:Wikidata/football/doc səhifəsində yaradıla bilər
local p = {}
function p.formatTeamClaim( context, options, statement )
if (not context) then error('context is not specified') end;
if (not options) then error('options is not specified') end;
if (not statement) then error('statement is not specified') end;
local args = {}
if not statement.qualifiers or not statement.qualifiers['P580'] or not statement.qualifiers['P580'][1] then
return ''
end
if context.formatSnak( options, statement.mainsnak ) ~= nil then
args['komanda_'] = context.formatSnak( options, statement.mainsnak )
end
local params = {
['komanda_'] = 'P54',
['başlama_'] = 'P580',
['bitmə_'] = 'P582',
['matç sayı_'] = 'P1350',
['qol sayı_'] = 'P1351',
['transfer növü_'] = 'P1642',
}
if statement.qualifiers and args['komanda_'] ~= nil then
for k, v in pairs(params) do
if statement.qualifiers[v] then
args[k] = context.formatSnak( options, statement.qualifiers[v][1] )
end
end
else
return nil
end
local res = options.frame:expandTemplate{ title = 'Futbolçu/karyera', args = args };
return res
end
return p