foundry-sw5e/templates/apps/property-attribution.html

17 lines
477 B
HTML
Raw Normal View History

<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>