forked from GitHub-Mirrors/foundry-sw5e
Add files via upload
This commit is contained in:
parent
e83d7f7f96
commit
406f0fe983
3 changed files with 243 additions and 0 deletions
29
templates/items/parts/item-description.html
Normal file
29
templates/items/parts/item-description.html
Normal file
|
@ -0,0 +1,29 @@
|
|||
<div class="tab flexrow active" data-group="primary" data-tab="description">
|
||||
|
||||
<div class="item-properties">
|
||||
{{#if isPhysical}}
|
||||
<div class="form-group">
|
||||
<label>{{ localize "SW5E.Quantity" }}</label>
|
||||
<input type="text" name="data.quantity" value="{{data.quantity}}" data-dtype="Number"/>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label>{{ localize "SW5E.Weight" }}</label>
|
||||
<input type="text" name="data.weight" value="{{data.weight}}" data-dtype="Number"/>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label>{{ localize "SW5E.Price" }}</label>
|
||||
<input type="text" name="data.price" value="{{data.price}}" data-dtype="Number"/>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
<ol class="properties-list">
|
||||
{{#each itemProperties}}
|
||||
<li>{{this}}</li>
|
||||
{{/each}}
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
{{editor content=data.description.value target="data.description.value" button=true owner=owner editable=editable}}
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue