You can add features to a tiddler depending on tag easily enough.
Make a tiddler and tag it $:/tags/ViewTemplate
In the content, create sections following this pattern:
<$list filter="[all[current]tag[mytag]]">
.... whatever you want to present, such as fields, additional information, etc.
</$list>
... other sections for other tags, fields, etc.
You can rearrange the output by closing the tiddler, clicking on the $:/tags/ViewTemplate tag, and then moving your new tiddler up or down in the stack.
Changing existing portions of the tiddler (such as the tags) would require you to hide the existing sections by removing their
$:/tags/ViewTemplate tag, and writing your own replacement.
HTH