foundry-sw5e/templates/apps/property-attribution.html
supervj 5bb253d9c3 Update Core to 1.4.1
Update Core to 1.4.1 and internal Version to 1.4.1.R1-A8
2021-08-06 16:38:15 -04:00

16 lines
477 B
HTML

<div class="property-attribution">
<table>
{{#each sources as |source|}}
<tr>
<td class="attribution-value mode-{{source.mode}}{{#if source.negative}} negative{{/if}}">
{{source.value}}
</td>
<td class="attribution-label">{{source.label}}</td>
</tr>
{{/each}}
<tr class="total">
<td class="attribution-value">{{total}}</td>
<td class="attribution-label">{{localize "SW5E.PropertyTotal"}}</td>
</tr>
</table>
</div>