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

De wikarphy
Linarphy (discussion | contributions)
m modification des value
Linarphy (discussion | contributions)
Aucun résumé des modifications
 
Ligne 28 : Ligne 28 :
             rows = {
             rows = {
                 {type = "row", label = "Configuration", value = "configuration"},
                 {type = "row", label = "Configuration", value = "configuration"},
                {type = "row", label = "Accès", value = "accès"},
                 {type = "row", label = "Port", value = "port"},
                 {type = "row", label = "Port", value = "port"},
                {type = "row", label = "Service", value = "service"},
             },
             },
         },
         },
     }
     }
}
}

Dernière version du 28 février 2025 à 00:19

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

local general = require("Module:Infobox/Fonctions")
local localdata = require("Module:Infobox/Localdata")

return {
    parts = {
        general.title(),
        general.image(),
        {
            type = "table",
            title = "Général",
            rows = {
                {type = "row", label = "Site officiel", value = "site officiel"},
                {type = "row", label = "Documentation", value = "documentation"},
                {type = "row", label = "Localisation", value = "localisation"},
            },
        },
        {
            type = "table",
            title = "Outils",
            rows = {
                {type = "row", label = "Utilisations", value = "utilisations"},
                {type = "row", label = "Utilise", value = "utilise"},
            },
        },
        {
            type = "table",
            title = "Information technique",
            rows = {
                {type = "row", label = "Configuration", value = "configuration"},
                {type = "row", label = "Accès", value = "accès"},
                {type = "row", label = "Port", value = "port"},
                {type = "row", label = "Service", value = "service"},
            },
        },
    }
}