Module:Infobox/Artiste : Différence entre versions
m (oups) |
(retire les oeuvres sans lien vers frwiki de la liste des oeuvres réputées) |
||
Ligne 39 : | Ligne 39 : | ||
}, | }, | ||
}, | }, | ||
− | + | {type = 'table', title = title, rows = | |
− | {type = 'table', title = 'Compléments', rows = { | + | { |
+ | { | ||
+ | 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 = 'row', value = 'compléments'}, | {type = 'row', value = 'compléments'}, | ||
}, | }, |
Version du 26 août 2015 à 18:00
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 = { 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(), {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énat|Mécènes]]', singularlabel = '[[Mécénat|Mécène]]', plurallabel = '[[Mécénat|Mécènes]]', value = 'mécènes', wikidata = {property = 'P1962', showdate = true, sorttype = 'chronological', conjtype = 'comma'} }, person.influencedby(), person.influenced(), person.awards(), }, }, {type = 'table', title = title, rows = { { 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 = 'row', value = 'compléments'}, }, }, person.signature(), } }