Jump to content

Module:NewDYKnomination

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Mr. Stradivarius (talk | contribs) at 10:45, 30 March 2015 (create a template for the final output). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

-- This module implements {{newDYKnomination}}.

local OUTPUT_TEMPLATE = [=[
{{DYKsubpage
|monthyear=${MONTH_AND_YEAR} 
|passed=<!--When closing discussion, enter yes or no -->
|2=
{{DYK conditions}}
====${HEADING}====
{{DYK nompage links|nompage=${NOM_SUBPAGE}|${NOMPAGE_LINK_ARGS}}}
${IMAGE}${DYK_SOUND}${DYK_WATCH}<!--  

                   Please do not edit above this line unless you are a DYK volunteer who is closing the discussion.

-->
* ${HOOK}
${ALT_HOOKS}${REVIEWED}${COMMENT}
<small>${STATUS} by ${AUTHORS}. ${NOMINATED} at ~~~~~.</small>
<!--${CHECK_CREDITS_WARNING}
${CREDITS}
-->

:* <!-- REPLACE THIS LINE TO WRITE FIRST COMMENT, KEEPING   :*   -->

${FILE_BREAK}}}]=]

local p = {}

function p._main(args)
end

function p.main(frame)
	local args = require('Module:Arguments').getArgs(frame, {
		wrappers = 'Template:NewDYKnomination'
	})
	return p._main(args)
end

return p