مدیران رابط کاربری، مدیران، templateeditor
۲۴٬۵۵۵
ویرایش
بدون خلاصۀ ویرایش |
بدون خلاصۀ ویرایش |
||
خط ۶: | خط ۶: | ||
local lang = frame.args[1] or "fa" | local lang = frame.args[1] or "fa" | ||
local output = "" | local fgetFAlist = require('Module:Imamatpedia/Selected').getFAlist | ||
for i, name in ipairs( | local imams = fgetFAlist() | ||
local selectedImams = {} | |||
output = output | for i = 1, 3 do | ||
local index = math.random(1, #imams) | |||
table.insert(selectedImams, imams[index]) | |||
table.remove(imams, index) | |||
end | |||
local output = "دیگر مقالات منتخب: " | |||
for i, name in ipairs(selectedImams) do | |||
output = output .. "[[" .. name .. "]]" | |||
if i < 3 then | |||
output = output .. " – " | |||
end | end | ||
end | end |