Hello there, I'm having a little difficulty in figuring this out. Say I have the example template:
{{Summary |image = enter the link to an image here (just the url) |factioncolor = enter the color for the faction (e.g. #598CBF) |status = enter status }}
The actual code looking something like this:
<table class="table" id="plane_summary_table" style="margin-bottom: auto;">
<tr style="text-align: left; vertical-align: middle;">
<td style="vertical-align: middle">Status</td>
<td style="color: {{{factioncolor}}}; font-size: 75%;"><pic src="{{{image}}}" width=64 align=left caption="{{{status}}}" /></td/>
</tr>
</table>
When I do it this way, it just displays a broken image with the text {{{status}}} in the correct color and text size. I did some research and saw that some people had luck with $wgRawHtml and the #tag:html parser function, but I can't get the image and status text to display for the life of me.
Any ideas?