Module:Infobox/Logiciel

De wikarphy
Version datée du 26 février 2025 à 19:32 par Linarphy (discussion | contributions) (Page créée avec « 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",... »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)

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 = "serveur hébergeant le logiciel"},
            },
        },
        {
            type = "table",
            title = "Outils",
            rows = {
                {type = "row", label = "Utilisations", value = "logiciels utilisant celui-ci"},
                {type = "row", label = "Utilise", value = "logiciels utilisés par celui-ci"},
            },
        },
        {
            type = "table",
            title = "Information technique",
            rows = {
                {type = "row", label = "Configuration", value = "Fichier de configuration"},
                {type = "row", label = "Port", value = "port utilisé par le logiciel (si applicable)"},
            },
        },
    }
}