If, like @Springer (and @TW_Tones?) and me, you do a lot of work with cascades, you may have had the question I have semi-regularly: Which template tiddler is being used to render this one? (And how do I quickly access it to make changes?)
After going into the Control Panel one too many times just to work out the answer, it finally occurred to me that I could present this information on the tiddler itself. Here’s the template I came up with, ready for testing on TW-com or in your own wiki: Tiddler Cascade Info.tid (1.2 KB)
Raw code under the fold
tags: $:/tags/TiddlerInfo/Advanced
title: $:/emt/ui/TiddlerInfo/Advanced/CascadeInfo
\procedure cascade(label, tag)
\define cascade-filter() [{!!title}] :cascade[all[shadows+tiddlers]tag<tag>!is[draft]get[text]] +[!is[blank]]
\function get.filter() [{!!title}get[text]]
\function using.filter() [all[shadows+tiddlers]tag<tag>!is[draft]] :filter[<..currentTiddler>filter<get.filter>]
\function config() [<tag>trim:suffix[Filter]trim:suffix[Template]search-replace[tags/],[core/ui/ControlPanel/]]
<tr>
<td><$link to=<<config>>>''<<label>>''</$link></td>
<td><$list filter=<<cascade-filter>> emptyMessage="//none//" /></td>
<td><$link to=<<using.filter>> /></td>
</tr>
\end
<br>''Cascade Info''
Currently using the following cascade templates:
<table>
<tr>
<th>Cascade</th>
<th>In use</th>
<th>Source filter</th>
</tr>
<<cascade "Story Tiddler Template" $:/tags/StoryTiddlerTemplateFilter>>
<<cascade "View Template Title" $:/tags/ViewTemplateTitleFilter>>
<<cascade "View Template Body" $:/tags/ViewTemplateBodyFilter>>
<<cascade "Edit Template Body" $:/tags/EditTemplateBodyFilter>>
<<cascade "Tiddler Icon" $:/tags/TiddlerIconFilter>>
<<cascade "Tiddler Colour" $:/tags/TiddlerColourFilter>>
</table>
Bonus: it also works for missing or “virtual” tiddlers!
I chose to display my template as part of the “Advanced” tab in the tiddler info section…
But if you’d prefer it somewhere more visible, you can replace the $:/tags/TiddlerInfo/Advanced tag — e.g., with $:/tags/ViewTemplate to make it a default ViewTemplate section — or incorporate it elsewhere (as in @TW_Tones’ tiddler card system?)
Please feel free to use this however you like, and let me know if you think of any clever enhancements!

But I left a comment in hopes that it might be a good jumping-off point, at least. Thank you for bringing it to my attention!