Module:Infobox/Artiste : Différence entre versions

De Lagny-sur-Marne Wiki
Aller à : navigation, rechercher
m (oubli)
m
Ligne 13 : Ligne 13 :
 
},
 
},
 
person.mainimage(),
 
person.mainimage(),
{type = 'table',  style = {['border-top'] = '1px solid #7DA7D9;'}, rows = {
+
{type = 'table',  rows = {
 
person.birth(),
 
person.birth(),
 
person.death(),
 
person.death(),
Ligne 41 : Ligne 41 :
 
},
 
},
 
{type = 'table', title = 'Œuvres réputées', rows = {
 
{type = 'table', title = 'Œuvres réputées', rows = {
{type = 'row', value = 'œuvres principales'},
+
{type = 'row', value = 'œuvres principales', wikidata =
 +
function()
 +
return wikidata.formatAndCat{entity = item, property = 'P800', numval = 5}
 +
end
 +
},
 
},
 
},
 
},
 
},

Version du 31 mai 2015 à 19:05

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'},
				{type = 'row', label = 'Formation', value = 'formation', property = 'P69'},
				{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'},
				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}
					end
				},
				},
			},
			{type = 'table', title = 'Compléments', rows = {
				{type = 'row', value = 'compléments'},
				},
			},
			person.signature(),
		}
	}