« Module:Infobox/Artiste » : différence entre les versions
adapte les noms de ligne au singulier/pluriel lorsque les données proviennent de Wikidata |
ajustements mineurs |
||
Ligne 6 : | Ligne 6 : | ||
parts = | parts = | ||
{ | { | ||
person.title('artiste'), | |||
person.mainimage(), | person.mainimage(), | ||
{type = 'table', rows = { | {type = 'table', rows = { | ||
Ligne 19 : | Ligne 14 : | ||
person.othernames(), | person.othernames(), | ||
person.nationality(), | person.nationality(), | ||
{type = 'row', label = ' | function() | ||
if localdata['autres activités'] then -- paramètre obsolète qui désactive person.occupation() | |||
return | |||
{type = multi, rows = { | |||
{type = 'row', label = 'Autres activités', value = 'autres activités'}, | |||
{type = 'row', label = 'Autres activités', value = 'autres activités'}, | |||
} | |||
} | |||
else | |||
return person.occupation() | |||
end | end | ||
end, | |||
person.education(), | person.education(), | ||
{type = 'row', label = 'Maîtres', singularlabel = 'Maître', plurallabel = 'Maîtres', value = 'maîtres', property = 'P1066'}, | {type = 'row', label = 'Maîtres', singularlabel = 'Maître', plurallabel = 'Maîtres', value = 'maîtres', property = 'P1066'}, | ||
Ligne 43 : | Ligne 41 : | ||
}, | }, | ||
}, | }, | ||
person.works(), | |||
{type = 'table', title = 'Compléments', rows = { | {type = 'table', title = 'Compléments', rows = { | ||
{type = 'row', value = 'compléments'}, | {type = 'row', value = 'compléments'}, |
Version du 7 août 2015 à 21:42
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(), function() if localdata['autres activités'] then -- paramètre obsolète qui désactive person.occupation() return {type = multi, rows = { {type = 'row', label = 'Autres activités', value = 'autres activités'}, {type = 'row', label = 'Autres activités', value = 'autres activités'}, } } else return person.occupation() end end, person.education(), {type = 'row', label = 'Maîtres', singularlabel = 'Maître', plurallabel = 'Maîtres', value = 'maîtres', property = 'P1066'}, {type = 'row', label = 'Élèves', singularlabel = 'Élève', plurallabel = 'Élèves', value = 'élèves', property = 'P802'}, {type = 'row', label = 'Lieu de travail', singularlabel = 'Lieu de travail', plurallabel = 'Lieux de travail', value = 'lieu de travail', wikidata = {property = 'P937', showdate = true, sorttype = 'chronological', conjtype = 'comma'} }, {type = 'row', label = 'Mouvement', value = 'mouvement', property = 'P135'}, {type = 'row', label = 'Mécènes', singularlabel = 'Mécène', plurallabel = 'Mécènes', value = 'mécènes', wikidata = {property = 'P1962', showdate = true, sorttype = 'chronological', conjtype = 'comma'} }, person.influencedby(), person.influenced(), person.awards(), }, }, person.works(), {type = 'table', title = 'Compléments', rows = { {type = 'row', value = 'compléments'}, }, }, person.signature(), } }