forked from MrPrimate/ddb-importer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitem-config.hbs
28 lines (26 loc) · 887 Bytes
/
item-config.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<form>
<header class="sheet-header">
<img class="item-icon" src="{{img}}" data-edit="img">
<h3 class="item-title">{{name}} on {{character}}</h3>
</header>
<p>Protect this item during character import.</p>
<hr>
<div class="form-description">
<div class="form-group">
<label for="override">Item from Override Compendium?</label>
<select name="override" id="override" style="flex: 55%">
{{#each overrides}}
<option value="{{@key}}" {{#if this.selected}}selected{{/if}}>{{this.label}}</option>
{{/each}}
</select>
</div>
<hr>
{{#each settings}}
<div>
<input {{#if this.isChecked}}checked{{/if}} type="checkbox" name="{{this.name}}">{{this.description}}
</div>
{{/each}}
</div>
<hr>
<button id="ddb-item-config-settings" class="ddb-item-config-button" type="submit">Save</button>
</form>