Documentation for this module may be created at Module:Tattoo/doc

local p = {}
local cargo = mw.ext.cargo

local commendations = 
{
}

function p.Main( frame )
    local t = {}
    local tables = 'Commendations'
    local fields = 'Commendation, COUNT(*)'

    local args = {
        groupBy = 'Commendation',
        where = 'Recipient = "' .. frame.args[1] .. '" AND Approved = true'
    }

    local results = cargo.query( tables, fields, args )
    local groups = {}
    
    for r = 1, #results do
        local r = results[r]
        groups[r.Commendation] = r["COUNT(*)"]
    end

    local output = [[<div style="position:relative;"><span style="position:absolute; left:50%; top:50%;>"]] .. "[[Image:Tattoo.png]]" .. "</span>"
    for i=1, 30 do
        local x = math.cos(i) * 150
        local y = math.sin(i) * 150
        output = output .. [[<span style="position:absolute; left:]] .. x .. [[px; top:]] .. y .. [[px;">]].. "[[Image:Operation_Big_K_Pin.png|30px]]" .. [[</span>]]
    end
    return output .. "</div>"
end

return p


Categories: