Aller au contenu

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

aucun résumé des modifications
Page créée avec « local localdata = require('Module:Infobox/Localdata') function buildSubject(localdata) local subject = 'Compagnie' if localdata['type'] then local types = { ['spatiale'] = 'spatiale', } local type = types[localdata['type']:lower()] if type then subject = subject .. ' ' .. type end end return subject end return { parts = { { type = 'title', value = 'nom', subtitle = 'sous-titre', icon = 'icône', subhead = { subject = build... »
 
Aucun résumé des modifications
Ligne 1 : Ligne 1 :
local localdata = require('Module:Infobox/Localdata')
function buildSubject(localdata)
local subject = 'Compagnie'
if localdata['type'] then
local types = {
['spatiale']          = 'spatiale',
}
local type = types[localdata['type']:lower()]
if type then
subject = subject .. ' ' .. type
end
end
return subject
end
return {
return {
parts = {
    parts = {
{ type = 'title', value = 'nom', subtitle = 'sous-titre', icon = 'icône', subhead = { subject = buildSubject(localdata), link = 'Compagnie' }},
        {
{ type = 'images', imageparameters = { 'image', 'image2', 'image3', 'image4', 'image5' }, captionparameter = { 'légende', 'image desc' }},
            type = "title",
{ type = 'table', separator = true, rows = {
            value = "titre",
{ type = 'row', label = 'Activité', value = 'activité' },
            subtitle = "sous-titre",
{ type = 'row', label = 'Produits', value = 'produits' }
        },
}},
        {
{ type = 'table', title = 'Personnalité', rows = {
            type = "images",
{ type = 'row', label = 'Fondateur', value = 'fondateur' },
            imageparameters = {"image", "image2", "image3", "image4", "image5"},
{ type = 'row', label = 'Employés', value = 'employés' }
            captionparameter = "légende",
}},
        },
{ type = 'table', title = 'Localisation', rows = {
        {
{ type = 'row', label = 'Planète', value = 'planète' },
            type = "table",
{ type = 'row', label = 'Siège social', value = { 'siège', 'siège social' }},
            title = "Activités",
{ type = 'row', label = 'Propriétés', value = { 'propriétés', 'localisations' }}
            rows = {
}},
                {type = "row", label = "Secteurs d'activités", value = "activité"},
{ type = 'table', title = 'Relation', rows = {
                {type = "row", label = "Produits", value = "produits"}
{ type = 'row', label = 'Société mère', value = { 'société mère', 'parent' }},
            }
{ type = 'row', label = 'Filiale', value = { 'filiale', 'divisions' }},
        },
{ type = 'row', label = 'Associé', value = { 'associé', 'relative' }}
        {
}},
            type = "table",
{ type = 'text', value = 'pied' }
            title = "Personnalités",
}
            rows = {
                {type = "row", label = "Fondateur", value = "fondateur"},
                {type = "row", label = "Employés", value = "employés"}
            }
        },
        {
            type = "table",
            title = "Propriétés",
            rows = {
                {type = "row", label = "Planète", value = "planète"},
                {type = "row", label = "Siège social", value = "siège"},
                {type = "row", label = "Propriétés", value = "propriétés"}
            }
        },
        {
            type = "table",
            title = "Relations",
            rows = {
                {type = "row", label = "Société mère", value = "société mère"},
                {type = "row", label = "Filiale", value = "filiale"},
                {type = "row", label = "Associé", value = "associé"}
            }
        },
    }
}
}