« Module:Infobox/Artiste » : différence entre les versions

De Lagny-sur-Marne Wiki
Aller à la navigation Aller à la recherche
0x010D (discussion | contributions)
person.patron(), permet d'indiquer le mécénat, elle a été déplacé sur Module:Infobox/Fonctions/Personne
0x010D (discussion | contributions)
person.works(), était déjà une fonction présente sur Module:Infobox/Fonctions/Personne
Ligne 34 : Ligne 34 :
},
},
},
},
{type = 'table', title = 'Œuvres réputées', rows =
person.works(),
{
{
type = 'row',
value = 'œuvres principales',
wikidata = {
property = 'P800',
numval = 5,
excludespecial = true,
withlink = 'wikipedia',
displayformat =
function(snak)
return '<i>' .. wikidata.formatEntity(wikidata.getid(snak), {defaultlink = 'image'}) .. '</i>'
end
}
}
}
},
{type = 'table', title = 'Compléments', rows = {
{type = 'table', title = 'Compléments', rows = {
{type = 'row', value = 'compléments'},
{type = 'row', value = 'compléments'},

Version du 17 novembre 2015 à 13:14

local person = require "Module:Infobox/Fonctions/Personne" local wikidata = require "Module:Wikidata" return { maincolor = '#7DA7D9', parts =

   	{

person.title('artiste'), person.mainimage(), {type = 'table', rows = { person.birth(), person.death(), person.floruit(), person.othernames(), person.nationality(), --- arrangemement pour le paramètre "autres activités" (obsolète ?) function() if localdata['autres activités'] then return {type = 'row', label = 'Activités', value = 'activités'} else return person.occupation() end end, {type = 'row', label = 'Autres activités', value = 'autres activités'}, ---- person.education(), person.contacts(), person.places(), person.movement(), person.patron(), person.influencedby(), person.influenced(), person.awards(), }, }, person.works(), {type = 'table', title = 'Compléments', rows = { {type = 'row', value = 'compléments'}, }, }, person.signature(), } }