{{#if hasGoods}}
<section class="fantasy-settlement-economy {{#if hasProduced}}has-produced{{/if}} {{#if hasSupplied}}has-supplied{{/if}}" aria-label="Location trade goods">
    {{#if hasProduced}}
    <div class="fantasy-settlement-goods-group is-produced">
        <h3>Produced Here</h3>
        <div class="fantasy-settlement-goods-grid">
            {{#each produced}}
            <button type="button" class="fantasy-settlement-good-card" data-action="openSettlementTradeGood" data-good-id="{{id}}" title="{{tooltip}}" aria-label="Open trade details for {{name}}">
                <img src="{{imageSrc}}" alt="">
                <span>{{name}}</span>
            </button>
            {{/each}}
        </div>
    </div>
    {{/if}}
    {{#if hasSupplied}}
    <div class="fantasy-settlement-goods-group is-supplied">
        <h3>Available Here</h3>
        <div class="fantasy-settlement-goods-grid">
            {{#each supplied}}
            <button type="button" class="fantasy-settlement-good-card is-supplied" data-action="openSettlementTradeGood" data-good-id="{{id}}" title="{{tooltip}}" aria-label="Open trade details for {{name}}">
                <img src="{{imageSrc}}" alt="">
                <span>{{name}}</span>
            </button>
            {{/each}}
        </div>
    </div>
    {{/if}}
    <footer class="fantasy-settlement-market-basin"><i class="fas {{#if hasRegion}}fa-route{{else}}fa-triangle-exclamation{{/if}}"></i><span>{{#if hasRegion}}{{marketName}}{{#if tradingCenter}} · Trades through {{tradingCenter.name}}{{else}} · Trade Hub{{/if}}{{else}}Not placed on a regional Scene{{/if}}</span></footer>
</section>
{{/if}}
