View source for Module:Sandbox/User:Alchez
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.
-- <pre>
-- {{Quest details}}
--
local p = {}
local yesno = require( 'Module:Yesno' )
function p.details( frame )
local _args = frame:getParent().args
local tbl = mw.html.create( 'table' )
:addClass( 'questdetails' )
-- @todo replace with CSS
:attr( 'cellspacing', '3' )
local title = mw.uri.fullUrl( mw.title.getCurrentTitle().fullText, { action = 'edit' } )
local unknown = 'Unknown <small>[' .. tostring( title ) .. ' edit]</small>'
local args = {}
for k, v in pairs(_args) do
if v ~= '' then
args[k] = v
000
1:0
Template used on this page:
Return to Module:Sandbox/User:Alchez.