Module:Infobox/Biographie : Différence entre versions

De Lagny-sur-Marne Wiki
Aller à : navigation, rechercher
(add functions father() and mother())
m (add function children())
Ligne 24 : Ligne 24 :
 
person.mother(),
 
person.mother(),
 
person.spouse(),
 
person.spouse(),
 +
person.children(),
 
person.awards(),
 
person.awards(),
 
},
 
},

Version du 24 juillet 2015 à 08:24

La documentation pour ce module peut être créée à Module:Infobox/Biographie/doc

local person = require "Module:Infobox/Fonctions/Personne"

return 
	{
	maincolor = '#cce6ff',
	parts =
    	{
			person.title(),
			person.mainimage(),
			{type = 'table', title = 'Informations', rows = {
				person.birth(),
				person.death(),
				person.othernames(),
				person.nationality(),
				{type = 'row', label = 'Langue maternelle', value = 'langue maternelle', property = 'P103'},
				person.education(),
				person.occupation(),
				person.officialposition(),
				{type = 'row', label = 'Organisation', value = 'organisation', property = 'P1268'},
				person.employer(),
				{type = 'row', label = 'Domaine', value = 'domaine', property = 'P101'},
				person.politicalparty(),
				person.father(),
				person.mother(),
				person.spouse(),
				person.children(),
				person.awards(),
				},
			},
			person.signature(),
		}
	}