foundryacks/src/templates/chat/roll-creation.html

29 lines
1.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<section class="ose chat-message">
<div class="ose chat-block">
<div class="flexrow chat-header">
<div class="chat-title"><h2>{{title}}</h2></div>
<div class="chat-img" style="background-image:url('{{data.actor.img}}')"></div>
</div>
<div class="flexrow">
<ol class="flex2">
{{#each scores as |score id|}}
<li class="flexrow">
<div style="text-align:right;">
{{lookup ../config.scores id}}
</div>
<div style="text-align:center;">
{{score}}
</div>
</li>
{{/each}}
</ol>
<div style="margin: 0.5em 0">
<div>Sum: {{stats.sum}}</div>
<div>Avg: {{stats.avg}}</div>
<div>σ: {{stats.std}}</div>
<hr>
<div>Gold: {{gold}}</div>
</div>
</div>
</div>
</section>