Documentation[voir] [modifier] [historique] [purger]

Cette page définit un module d'infobox.


local person = require "Module:Infobox/Fonctions/Personne"
local wikidata = require "Module:Wikidata"
return 
	{
	maincolor = '#7DA7D9',
	parts =
    	{
			{
				type = 'title',
				value = 'nom',
				icon = 'aerostat',
				style = {color = '#ffffff'}
			},
			{type = 'table',
				rows = {
					{
						type = 'row',
						label = 'Conjoint', -- todo : adapter le libellé en genre ?
						plurallabel = 'Conjoints',
						value = 'conjoint',
						wikidata = {
							property = 'P26',
							showdate = true,
							sorttype = 'chronological',
							conjtype = 'new line',
							textformat = 'long',
							precision = 'year',
							stilltrue = not dead,
							precision = 'year',
						}
					}
				}
			}
		}
	}