Jump to content

Module:Multiple releases

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Codename Lisa (talk | contribs) at 18:39, 2 September 2016 (Expanded the sample). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local infobox = require ('Module:Infobox').infobox

local p = {}

function p.main( frame )
    AssortedArgs = {}

    AssortedArgs["child"] = "yes"
    AssortedArgs["label1"] = "Windows ed."
    AssortedArgs["data1"] = "27.0 / 27 August 2016"
    AssortedArgs["label2"] = "Mac ed."
    AssortedArgs["data2"] = "28.0 / 28 August 2016"
    AssortedArgs["label3"] = "Linux ed."
    AssortedArgs["data3"] = "29.0 / 29 August 2016"

    return infobox(AssortedArgs)
end

return p