forked from GitHub-Mirrors/foundry-sw5e
DND5e Core 1.3.5
DND5e Core 1.3.5 modded to SW5e System Combining with DND5e Core 1.3.2 to see one big commit since last core update DND5e Core 1.3.2 modded to SW5e System
This commit is contained in:
parent
c208552f70
commit
b56a074697
147 changed files with 3615 additions and 1875 deletions
19
templates/apps/select-items-prompt.html
Normal file
19
templates/apps/select-items-prompt.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
|
||||
<form>
|
||||
<p class="hint">{{hint}}</p>
|
||||
|
||||
<ul class="items-list">
|
||||
{{#each items}}
|
||||
<li class="item flexrow">
|
||||
<div class="item-name flexrow">
|
||||
<div class="item-image" style="background-image:url({{data.img}})" data-item-id="{{id}}"></div>
|
||||
|
||||
<label class="flexrow">
|
||||
<h4>{{data.name}}</h4>
|
||||
<input type="checkbox" checked name="{{id}}" />
|
||||
</label>
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</form>
|
Loading…
Add table
Add a link
Reference in a new issue