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

De Lagny-sur-Marne Wiki
Aller à la navigation Aller à la recherche
0x010D (discussion | contributions)
m italiques pour la liste des oeuvres venant de Wikidata
0x010D (discussion | contributions)
mAucun résumé des modifications
Ligne 43 : Ligne 43 :
{type = 'row', value = 'œuvres principales', wikidata =
{type = 'row', value = 'œuvres principales', wikidata =
function()
function()
return wikidata.formatAndCat{entity = item, property = 'P800', numval = 5, displayformat =
return wikidata.formatAndCat{entity = item, property = 'P800', numval = 5, conjtype = 'comma', displayformat =
function(snak)
function(snak)
return '<i>' .. wikidata.formatSnak(snak) .. '</i>'
return '<i>' .. wikidata.formatSnak(snak) .. '</i>'

Version du 31 mai 2015 à 20:23

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è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, conjtype = 'comma', displayformat = function(snak) return '' .. wikidata.formatSnak(snak) .. '' end } end }, }, }, {type = 'table', title = 'Compléments', rows = { {type = 'row', value = 'compléments'}, }, }, person.signature(), } }