« Module:Infobox/Faction » : différence entre les versions
Aucun résumé des modifications |
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 = "Politique", | |||
rows = { | |||
{type = "row", label = "Type", value = "type"}, | |||
{type = "row", label = "Gouvernement", value = "gouvernement"}, | |||
{type = "row", label = "Structure", value = "structure"}, | |||
{type = "row", label = "Dissolution", value = "dissolution"}, | |||
} | |||
}, | |||
{ | |||
type = "table", | |||
title = "Société", | |||
rows = { | |||
{type = "row", label = "Fondateurs", value = "fondateurs"}, | |||
{type = "row", label = "Chefs", value = "chefs"}, | |||
{type = "row", label = "Membres notables", value = "membres"}, | |||
} | |||
}, | |||
{ | |||
type = "table", | |||
title = "Territoires", | |||
rows = { | |||
{type = "row", label = "Capitale", value = "capitale"}, | |||
{type = "row", label = "Territoires", value = "territoires"}, | |||
{type = "row", label = "Quartier-général", value = "qg"}, | |||
{type = "row", label = "Centres majeurs", value = "majeurs"}, | |||
{type = "row", label = "Lieux notables", value = "lieux"}, | |||
{type = "row", label = "Systèmes", value = "systèmes"}, | |||
} | |||
}, | |||
{ | |||
type = "table", | |||
title = "Relations et associations", | |||
rows = { | |||
{type = "row", label = "Parent", value = "parents"}, | |||
{type = "row", label = "Division", value = "divisions"}, | |||
{type = "row", label = "Relation", value = "relations"}, | |||
} | |||
}, | |||
} | |||
} | } |
Version du 10 janvier 2023 à 16:21
return {
parts = {
{
type = "title",
value = "titre",
subtitle = "sous-titre",
},
{
type = "images",
imageparameters = {"image", "image2", "image3", "image4", "image5"},
captionparameter = "légende",
},
{
type = "table",
title = "Politique",
rows = {
{type = "row", label = "Type", value = "type"},
{type = "row", label = "Gouvernement", value = "gouvernement"},
{type = "row", label = "Structure", value = "structure"},
{type = "row", label = "Dissolution", value = "dissolution"},
}
},
{
type = "table",
title = "Société",
rows = {
{type = "row", label = "Fondateurs", value = "fondateurs"},
{type = "row", label = "Chefs", value = "chefs"},
{type = "row", label = "Membres notables", value = "membres"},
}
},
{
type = "table",
title = "Territoires",
rows = {
{type = "row", label = "Capitale", value = "capitale"},
{type = "row", label = "Territoires", value = "territoires"},
{type = "row", label = "Quartier-général", value = "qg"},
{type = "row", label = "Centres majeurs", value = "majeurs"},
{type = "row", label = "Lieux notables", value = "lieux"},
{type = "row", label = "Systèmes", value = "systèmes"},
}
},
{
type = "table",
title = "Relations et associations",
rows = {
{type = "row", label = "Parent", value = "parents"},
{type = "row", label = "Division", value = "divisions"},
{type = "row", label = "Relation", value = "relations"},
}
},
}
}