View source for Module:Data tables
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
local getArgs = require('Module:Arguments').getArgs
function p.buildPartsTable(frame)
local args = getArgs(frame)
local category = args[1]
local family = args[2]
local newTable = ""
if category == "command_modules" and family == "pods" then
newTable = p._podTable(args)
elseif category == "engines" then
newTable = p._engineTable(args)
end
return frame:preprocess(newTable)
end
function p._engineTable(args)
local category = args[1]
local family = args[2]
local tempTable = ""
local name = ""
000
1:0
Template used on this page:
Return to Module:Data tables.