Template:Episode list is permanently protected from editing because it is a heavily used or highly visible template. Substantial changes should first be proposed and discussed here on this page. If the proposal is uncontroversial or has been discussed and is supported by consensus, editors may use {{edit template-protected}} to notify an administrator or template editor to make the requested edit. Usually, any contributor may edit the template's documentation to add usage notes or categories.
Any contributor may edit the template's sandbox. Functionality of the template can be checked using test cases.
This template was nominated for merging. Please review the prior discussions if you are considering re-nomination:
This template is within the scope of WikiProject Television, a collaborative effort to develop and improve Wikipedia articles about television programs. If you would like to participate, please visit the project page where you can join the discussion.
For how to use this banner template, see its documentation.TelevisionWikipedia:WikiProject TelevisionTemplate:WikiProject Televisiontelevision
This template is within the scope of WikiProject Lists, an attempt to structure and organize all list pages on Wikipedia. If you wish to help, please visit the project page, where you can join the project and/or contribute to the discussion.ListsWikipedia:WikiProject ListsTemplate:WikiProject ListsList
Discussions here are automatically indexed by User:Legobot.
This page has archives. Sections older than 90 days may be auto-archived by Lowercase sigmabot III if there are more than 2.
Exclusion for TBA with a note and other similar entries in air date
After whittling down Category:Episode lists with unformatted air dates through my bot and some manual work, I've got it down to a remaining few that have some entries that I'm wondering how we account for in the |OriginalAirDate= param. I believe in the checking for the maintenance category, we make an exclusion for "Unaired" as text? However we do that, there are a few items that are similar in nature and although the list is pared down to just a few, I have seen other similar instances. Here are some examples based on what's there for invalid date entries in |OriginalAirDate=:
List of Odd Squad episodes - formatted date with {{citation needed}} and/or {{unreliable source}} (I'm not 100% certain, but after staring at this one for awhile, those are the entries that I'm assuming are causing it to be added to the maint cat)
These seem to be what people generally do when there is a an episode that may not have aired on the primary outlet, but might have been released somewhere else (this seems to happen with Disney+ on a regular basis with early releases). So I guess my question/comment is can we do one of the following:
Create an exclusion for the maintenance category to ignore these types of instances.
Set/discuss some standard that provides clear documentation/guidance on not inputting things this way
Or, ignore it and move on.
I hope a explained this well enough to make sense what I'm asking and suggesting. Certainly, if I'm murky on it, just ask me to rewrite or clarify. ButlerBlog (talk) 18:15, 18 July 2025 (UTC)[reply]
I think an exclusion should be made, because I think the use of citation tags or note tags to provide further information about a date is helpful. I don't see this being an improper formatting case. - Favre1fan93 (talk) 16:16, 19 July 2025 (UTC)[reply]
At Topo that is a horrible note. So we have an actual air date, but we're sticking with a "TBA" because? Same with Pat. For "Unaired", I agree that we should add that as accepted text. Gonnym (talk) 08:57, 20 July 2025 (UTC)[reply]
I think "Unaired" is already accepted (at least, it doesn't appear to affect inclusion in the main cat). In doing some further work to clean up the category, it does look like {{citation needed}} is accepted (in my original post, I thought it wasn't). ButlerBlog (talk) 14:25, 21 July 2025 (UTC)[reply]
Fixed I've removed the code that left-aligns the Aux content. I do remember why this was implemented, though; it was for the episode titles at List of Doctor Who episodes (1963–1989), to left-align them (since they're under Aux parameters). I'm not overly worried about the now-centered titles, though. -- Alex_21TALK23:25, 22 August 2025 (UTC)[reply]
duplicate-ids
This edit request has been answered. Set the |answered= parameter to no to reactivate your request.
The production numbers do still use an ID, regardless of what ID in the row should be used, and duplicate HTML ID's can produce accessability issues. For the above episode link you've given, while using a random number would be a bad idea, the production code cell should have an ID of #pc1002-029 (using the full unique production code). -- Alex_21TALK10:03, 1 September 2025 (UTC)[reply]
Partly done: I've fixed the issue. On Module:Episode_list#L-81, string.find("1002-029", ' ----') was a RegEx pattern, thus removing everything after the "1002". I have changed this use to plaintext; string.find("1002-029", ' ----', 1, true) adds the parameters |init=1 (start at the start of the string, default behaviour), and |plain=true (make the search for plaintext and not RegEx - this is the important bit). The line at Module:Episode_list#L-281 is only meant to remove the literal string of ' ----'.