m (1 revision imported) |
No edit summary |
||
(10 intermediate revisions by the same user not shown) | |||
Line 9: | Line 9: | ||
local retval = capiunto.create( { | local retval = capiunto.create( { | ||
title = args.title, | title = frame.args.title, | ||
headerStyle = headerStyle, | headerStyle = headerStyle, | ||
bodyClass = 'report-page-infobox' | |||
} ) | } ) | ||
if args.type and args.type ~= '' then | |||
:addRow( ' | if args.type ~= 'Human Rights Abuse' and args.type ~= 'Anti-Consumer Tactics' and args.type ~= 'Political Profits' | ||
then retval:addRow( 'Invalid report category. <!-- Click on this box, then \'Edit\' to categorize this report. --> [[Category:Uncategorized Reports]]', '', 'report-unfinished' ) | |||
else | |||
retval:addRow( 'Type', args.type..'[[Category:Report]]', 'report-md-type-div' ) end | |||
else | |||
retval:addRow( '<!-- Click on this box, then \'Edit\' to categorize this report. --> [[Category:Uncategorized Reports]]', '', 'report-unfinished' ) end | |||
if args.timeframe and args.timeframe ~= '' then | |||
retval:addRow( 'Date(s)', args.timeframe, 'brand-md-timeframe-div' ) | |||
end | |||
return retval | return retval | ||
end | end | ||
return p | return p |
Latest revision as of 20:10, 6 February 2024
Documentation for this module may be created at Module:ReportHeader/doc
local capiunto = require 'capiunto'
local p = {}
function p.main(frame)
local args = frame:getParent().args
local headerStyle
headerStyle = 'background-color:grey;'
local retval = capiunto.create( {
title = frame.args.title,
headerStyle = headerStyle,
bodyClass = 'report-page-infobox'
} )
if args.type and args.type ~= '' then
if args.type ~= 'Human Rights Abuse' and args.type ~= 'Anti-Consumer Tactics' and args.type ~= 'Political Profits'
then retval:addRow( 'Invalid report category. <!-- Click on this box, then \'Edit\' to categorize this report. --> [[Category:Uncategorized Reports]]', '', 'report-unfinished' )
else
retval:addRow( 'Type', args.type..'[[Category:Report]]', 'report-md-type-div' ) end
else
retval:addRow( '<!-- Click on this box, then \'Edit\' to categorize this report. --> [[Category:Uncategorized Reports]]', '', 'report-unfinished' ) end
if args.timeframe and args.timeframe ~= '' then
retval:addRow( 'Date(s)', args.timeframe, 'brand-md-timeframe-div' )
end
return retval
end
return p