Module:Infobox/Biographie : Différence entre versions
(+formation) |
(employeur) |
||
Ligne 20 : | Ligne 20 : | ||
{type = 'row', label = 'Formation', value = 'formation', property = 'P69'}, | {type = 'row', label = 'Formation', value = 'formation', property = 'P69'}, | ||
{type = 'row', label = 'Occupation', value = 'occupation', property = 'P106'}, | {type = 'row', label = 'Occupation', value = 'occupation', property = 'P106'}, | ||
+ | {type = 'row', label = 'Employeur', value = 'employeur', property = 'P108'}, | ||
{type = 'row', label = 'Domaine', value = 'domaine', property = 'P101'}, | {type = 'row', label = 'Domaine', value = 'domaine', property = 'P101'}, | ||
{type = 'row', label = 'Latéralisation', value = 'latéralisation', property = 'P552'}, | {type = 'row', label = 'Latéralisation', value = 'latéralisation', property = 'P552'}, |
Version du 1 juillet 2015 à 13:40
La documentation pour ce module peut être créée à Module:Infobox/Biographie/doc
local person = require "Module:Infobox/Fonctions/Personne" local wikidata = require "Module:Wikidata" return { maincolor = '#cce6ff', parts = { { type = 'title', value = 'nom', }, person.mainimage(), {type = 'table', title = 'Informations', rows = { {type = 'row', label = 'Surnom', value = 'surnom', property = 'P1449'}, {type = 'row', label = 'Nom de naissance', value = 'nom de naissance', property = 'P1477'}, person.birth(), person.death(), person.nationality(), {type = 'row', label = 'Langue maternelle', value = 'langue maternelle', property = 'P103'}, {type = 'row', label = 'Formation', value = 'formation', property = 'P69'}, {type = 'row', label = 'Occupation', value = 'occupation', property = 'P106'}, {type = 'row', label = 'Employeur', value = 'employeur', property = 'P108'}, {type = 'row', label = 'Domaine', value = 'domaine', property = 'P101'}, {type = 'row', label = 'Latéralisation', value = 'latéralisation', property = 'P552'}, {type = 'row', label = 'Couleur des yeux', value = 'couleur des yeux', property = 'P1340'}, {type = 'row', label = 'Couleur des cheveux', value = 'couleur des cheveux', property = 'P1884'}, {type = 'row', label = 'Groupe sanguin', value = 'groupe sanguin', property = 'P1853'}, {type = 'row', label = 'Conjoint', value = 'conjoint', property = 'P26'}, }, } } }