Module:Profession info: Difference between revisions
Jump to navigation
Jump to search
Content added Content deleted
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
local editButton = require('Module:Edit button') |
|||
local hc = require('Module:Param Parse').has_content |
|||
local p = {} |
local p = {} |
||
function p.main(frame) |
function p.main(frame) |
||
local args = frame:getParent().args |
local args = frame:getParent().args |
||
local name = args.name |
|||
local profession = args.profession |
|||
local exp = args.exp |
|||
local lvl = args.lvl |
|||
local out = mw.html.create('table') |
local out = mw.html.create('table') |
||
Line 15: | Line 13: | ||
:attr{ colspan = '2' } |
:attr{ colspan = '2' } |
||
:wikitext(name) |
:wikitext(name) |
||
:done() |
|||
:done() |
|||
:tag('tr') |
|||
:tag('th') |
|||
:wikitext('Level required') |
|||
:done() |
|||
:tag('td') |
|||
:wikitext(hc(args.level) and (args.level) or editButton("'''?''' (edit)")) |
|||
:done() |
|||
:done() |
|||
:tag('tr') |
|||
:tag('th') |
|||
:wikitext('[['..args.profession..'|'..args.profession..' XP]]') |
|||
:done() |
|||
:tag('td') |
|||
:wikitext(hc(args.exp) and (args.exp) or editButton("'''?''' (edit)")) |
|||
:done() |
:done() |
||
:done() |
:done() |
Revision as of 21:43, 26 November 2024
Module documentation
This documentation is transcluded from Module:Profession info/doc. [edit] [history] [purge]
This module does not have any documentation. Please consider adding documentation at Module:Profession info/doc. [edit]
Module:Profession info's function main is invoked by Template:Profession info.
Module:Profession info requires Module:Edit button.
Module:Profession info requires Module:Param Parse.
local editButton = require('Module:Edit button')
local hc = require('Module:Param Parse').has_content
local p = {}
function p.main(frame)
local args = frame:getParent().args
local out = mw.html.create('table')
:addClass('wikitable')
:tag('tr')
:tag('th')
:attr{ colspan = '2' }
:wikitext(name)
:done()
:done()
:tag('tr')
:tag('th')
:wikitext('Level required')
:done()
:tag('td')
:wikitext(hc(args.level) and (args.level) or editButton("'''?''' (edit)"))
:done()
:done()
:tag('tr')
:tag('th')
:wikitext('[['..args.profession..'|'..args.profession..' XP]]')
:done()
:tag('td')
:wikitext(hc(args.exp) and (args.exp) or editButton("'''?''' (edit)"))
:done()
:done()
return out
end
return p