10 lines
243 B
HTML
10 lines
243 B
HTML
|
|
<div>
|
||
|
|
{{#each actors}}
|
||
|
|
<div class="actor-health">
|
||
|
|
<strong>{{this.name}}</strong>
|
||
|
|
<progress value="{{this.current}}" max="{{this.max}}"></progress>
|
||
|
|
{{this.current}} / {{this.max}}
|
||
|
|
</div>
|
||
|
|
{{/each}}
|
||
|
|
</div>
|