View source for Module:Infobox/dates
Appearance
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local getArgs = require('Module:Arguments').getArgs
local default_error_category = "[[Category:Pages using infobox television with nonstandard dates]]"
local p = {}
function p.start_end_date_template_validation(frame)
local args = getArgs(frame)
local error_category = args.error_category or default_error_category
local start_date = args.first_aired or args.released or args.airdate or args.release_date or args.airdate_overall
if start_date then
if not start_date:find("dtstart") then
return error_category
end
end
local end_date = args.last_aired
if end_date then
if not end_date:find("dtend") and end_date ~= "present" then
return error_category
end
000
1:0
Template used on this page:
Return to Module:Infobox/dates.