I’m trying to get a multi-entry relationship field to render in a template, however I’m getting “Unmatched Relationship Tag: “{impact_stats}”” with template debugging enabled, with it disabled I get nothing with the conditional, without the conditional it just outputs the actual tags and not their contents.
This is the code I’m using, it’s contained within a exp:channel:entries loop and all of the entry’s tags other than the impact_stats one is working.
{if impact_stats}
<section class="content-stats-listing">
<div class="row">
{impact_stats}
<article class="module-stats note av-fire"><!-- {color} -->
<h4>{impact_stats:headline}</h4>
<p> {impact_stats:description}<br />
</article><br />
{/impact_stats}<br />
</div><br />
</section><br />
{/if}Any ideas?