mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
* Actor Roll bonuses * Removed console log and comment --------- Co-authored-by: WBHarry <williambjrklund@gmail.com>
13 lines
No EOL
434 B
Handlebars
13 lines
No EOL
434 B
Handlebars
<form id="item-action-select">
|
|
<header class="dialog-header">
|
|
<h1>{{itemName}}</h1>
|
|
</header>
|
|
<ul class="actions-list">
|
|
{{#each actions}}
|
|
<li class="action-item">
|
|
<input type="radio" id="action-{{_id}}" name="actionId" value="{{_id}}" {{#if (eq @index 0)}}checked{{/if}}>
|
|
<label class="label" for="action-{{_id}}">{{ name }}</label>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
</form> |