Basculer le menu
Changer de menu des préférences
Basculer le menu personnel
Non connecté(e)
Votre adresse IP sera visible au public si vous faites des modifications.
Version datée du 26 septembre 2025 à 07:43 par Ayd (discussion | contributions) (Page créée avec « local config = { titre = function(args) return args.nom or '{{PAGENAME}}' end, image = function(args) if args.image then return '300px' end return nil end, sections = { { titre = 'Informations générales', champs = { { cle = 'type', label = 'Type' }, { cle = 'climat', label = 'Climat' },... »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)

La documentation pour ce module peut être créée à Module:Infobox/Configs/Geographie/doc

local config = {
    titre = function(args)
        return args.nom or '{{PAGENAME}}'
    end,

    image = function(args)
        if args.image then
            return '[[Fichier:' .. args.image .. '|300px]]'
        end
        return nil
    end,

    sections = {
        {
            titre = 'Informations générales',
            champs = {
                { cle = 'type', label = 'Type' },
                { cle = 'climat', label = 'Climat' },
                { cle = 'statut', label = 'Statut' },
            }
        },
        {
            titre = 'Habitants et culture',
            champs = {
                { cle = 'controle', label = 'Contrôle' },
                { cle = 'langues', label = 'Langues' },
                { cle = 'cultes', label = 'Cultes' },
                { cle = 'capitale', label = 'Capitale' },
            }
        },
        {
            titre = 'Localisation',
            champs = {
                { cle = 'monde', label = 'Monde' },
                { cle = 'localisation', label = 'Localisation' },
            }
        }
    }
}

return config