Module:Infobox/Artiste : Différence entre versions
m |
(correction du format pour la période d'activité, activation de Wikidata pour "activités" et pour la gestion des noms) |
||
Ligne 16 : | Ligne 16 : | ||
person.birth(), | person.birth(), | ||
person.death(), | person.death(), | ||
− | + | person.floruit(), | |
− | |||
− | |||
person.nationality(), | person.nationality(), | ||
− | {type = 'row', label = 'Activités', value = 'activités'}, | + | {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 = 'Autres activités', value = 'autres activités'}, | ||
{type = 'row', label = 'Formation', value = 'formation', property = 'P69'}, | {type = 'row', label = 'Formation', value = 'formation', property = 'P69'}, |
Version du 31 mai 2015 à 18: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', style = {['border-top'] = '1px solid #7DA7D9;'}, rows = { person.birth(), person.death(), person.floruit(), 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'}, }, }, {type = 'table', title = 'Compléments', rows = { {type = 'row', value = 'compléments'}, }, }, person.signature(), } }