Module:Infobox/Artiste

De Lagny-sur-Marne Wiki
Aller à : navigation, rechercher

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

local person = require "Module:Infobox/Fonctions/Personne"
local wikidata = require "Module:Wikidata"
return 
	{
	maincolor = '#7DA7D9',
	parts =
    	{
			{
			type = 'title',
			value = 'nom',
			icon = 'artiste',
			style = {color = '#ffffff'}
			},
			person.mainimage(),
			{type = 'table',  rows = {
				person.birth(),
				person.death(),
				person.floruit(),
				person.othernames(),
				person.nationality(),
				{type = 'row', label = 'Activités', value = 'activités', wikidata=
					function()
					if localdata['autres activités'] then
						return nil
					end
					return wikidata.formatAndCat{entity = item, property = 'P106'}
					end
				},
				{type = 'row', label = 'Autres activités', value = 'autres activités'},
				person.education(),
				{type = 'row', label = 'Maîtres', value = 'maîtres', property = 'P1066'},
				{type = 'row', label = 'Élèves', value = 'élèves', property = 'P802'},
				{type = 'row', label = 'Lieu de travail', value = 'lieu de travail', wikidata =
					function() return wikidata.formatStatements{entity = item, property = 'P937', showdate = true, sorttype = 'chronological', conjtype = 'comma'} end},
				{type = 'row', label = 'Mouvement', value = 'mouvement', property = 'P135'},
				{type = 'row', label = '[[Mécénat|Mécènes]]', value = 'mécènes',  wikidata =
					function() return wikidata.formatStatements{entity = item, property = 'P1962', showdate = true, sorttype = 'chronological', conjtype = 'comma'} end},
				person.influencedby(),
				person.influenced(),
				person.awards(),
				},
			},
			{type = 'table', title = 'Œuvres réputées', rows = {
				{type = 'row', value = 'œuvres principales', wikidata =
					function()
					return wikidata.formatAndCat{entity = item, property = 'P800', numval = 5, conjtype = 'comma', displayformat =
					function(snak)
						return '<i>' .. wikidata.formatSnak(snak) .. '</i>'
					end
					}
					end
				},
				},
			},
			{type = 'table', title = 'Compléments', rows = {
				{type = 'row', value = 'compléments'},
				},
			},
			person.signature(),
		}
	}