« Module:Infobox/Biographie » : différence entre les versions
utilisation de fonctions de Module:Infobox/Fonctions/Personne pour plus de finesse dans le traitement Wikidata |
Annulation des modifications de Zolo (retour à la précédente version de Simon Villeneuve) : en attendant de régler le problème d'âge |
||
Ligne 6 : | Ligne 6 : | ||
parts = | parts = | ||
{ | { | ||
{ | |||
type = 'title', | |||
value = 'nom', | |||
}, | |||
person.mainimage(), | person.mainimage(), | ||
{type = 'table', title = 'Informations', rows = { | {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.birth(), | ||
person.death(), | person.death(), | ||
person.nationality(), | person.nationality(), | ||
{type = 'row', label = 'Langue maternelle', value = 'langue maternelle', property = 'P103'}, | {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 = 'Occupation', value = 'occupation', property = 'P106'}, | ||
{type = 'row', label = 'Organisation', value = 'organisation', property = 'P1268'}, | {type = 'row', label = 'Organisation', value = 'organisation', property = 'P1268'}, | ||
Ligne 21 : | Ligne 25 : | ||
{type = 'row', label = 'Parti politique', value = 'politique', property = 'P102'}, | {type = 'row', label = 'Parti politique', value = 'politique', property = 'P102'}, | ||
{type = 'row', label = 'Conjoint', value = 'conjoint', property = 'P26'}, | {type = 'row', label = 'Conjoint', value = 'conjoint', property = 'P26'}, | ||
{type = 'row', label = 'Distinctions', value = 'distinctions', property = 'P166'}, | |||
}, | }, | ||
} | } | ||
} | } | ||
} | } |
Version du 17 juillet 2015 à 01:00
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 = 'Organisation', value = 'organisation', property = 'P1268'}, {type = 'row', label = 'Employeur', value = 'employeur', property = 'P108'}, {type = 'row', label = 'Domaine', value = 'domaine', property = 'P101'}, {type = 'row', label = 'Parti politique', value = 'politique', property = 'P102'}, {type = 'row', label = 'Conjoint', value = 'conjoint', property = 'P26'}, {type = 'row', label = 'Distinctions', value = 'distinctions', property = 'P166'}, }, } } }