Module:CIB
Documentation for this module may be created at Module:CIB/doc
local capiunto = require 'capiunto' local p = {} function p.main(frame) local args = frame:getParent().args local headerStyle if args.headerstyle and args.headerstyle ~= nil then headerStyle = string.format('background-color:%s;', args.headerstyle) else headerStyle = 'background-color:grey;' end local retval = capiunto.create( { headerStyle = headerStyle, } ) if args.title ~= nil then p:addHeader( args.title ); end if args.image ~= nil then p:addImage( args.image, args.caption ); end if args.born ~= nil then p:addRow( 'Born', args.born ); end if args.alias ~= nil then p:addRow( 'Other Names', args.alias ); end if args.occupation ~= nil then p:addRow( 'Occupation', args.occupation ); end if args.affiliation ~= nil then p:addRow( 'Satanic Affiliation', args.affiliation ); end if args.established ~= nil then p:addRow( 'Established', args.established ); end if args.entity_type ~= nil then p:addRow( 'Entity Type', args.entity_type ); end if args.incorporated_state ~= nil then p:addRow( 'Incorporated State', args.incorporated_state ); end if args.state_id ~= nil then p:addRow( 'State ID#', args.state_id ); end if args.ein ~= nil then p:addRow( 'EIN', args.ein ); end if args.physical_address ~= nil then p:addRow( 'Physical Address', args.physical_address ); end if args.mail_address ~= nil then p:addRow( 'Mail Address', args.mail_address ); end if args.registered_agent ~= nil then p:addRow( 'Registered Agent', args.registered_agent ); end if args.doing_business_as ~= nil then p:addRow( 'Doing Business As', args.doing_business_as ); end if args.past_names ~= nil then p:addRow( 'Past Names', args.past_names ); end if args.website ~= nil then p:addRow( 'Website', args.website ); end return retval end return p