« Module:Infobox/Société » : différence entre les versions
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 : | ||
return { | return { | ||
parts = { | |||
{ | |||
type = "title", | |||
value = "titre", | |||
subtitle = "sous-titre", | |||
}, | |||
{ | |||
type = "images", | |||
imageparameters = {"image", "image2", "image3", "image4", "image5"}, | |||
captionparameter = "légende", | |||
}, | |||
{ | |||
type = "table", | |||
title = "Activités", | |||
rows = { | |||
{type = "row", label = "Secteurs d'activités", value = "activité"}, | |||
{type = "row", label = "Produits", value = "produits"} | |||
} | |||
}, | |||
{ | |||
type = "table", | |||
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é"} | |||
} | |||
}, | |||
} | |||
} | } |
Version du 10 janvier 2023 à 16:17
return {
parts = {
{
type = "title",
value = "titre",
subtitle = "sous-titre",
},
{
type = "images",
imageparameters = {"image", "image2", "image3", "image4", "image5"},
captionparameter = "légende",
},
{
type = "table",
title = "Activités",
rows = {
{type = "row", label = "Secteurs d'activités", value = "activité"},
{type = "row", label = "Produits", value = "produits"}
}
},
{
type = "table",
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é"}
}
},
}
}