forked from GitHub-Mirrors/foundry-sw5e

CSS - Removed unnecessary units on 0 values - Replaced invalid css values (such as line-height default) with valid equivalents Templates - Added missing closing tags - Fixed incorrect closing tags - Removed unnecessary closing tags
73 lines
2.3 KiB
HTML
73 lines
2.3 KiB
HTML
<form class="{{cssClass}} flexcol" autocomplete="off">
|
|
|
|
{{!-- Item Sheet Header --}}
|
|
<header class="sheet-header flexrow">
|
|
<img class="profile" src="{{item.img}}" title="{{item.name}}" data-edit="img"/>
|
|
|
|
<div class="header-details flexrow">
|
|
<h1 class="charname">
|
|
<input name="name" type="text" value="{{item.name}}" placeholder="{{ localize 'SW5E.ItemName' }}"/>
|
|
</h1>
|
|
|
|
<div class="item-subtitle">
|
|
<h4 class="item-type">{{itemType}}</h4>
|
|
<span class="item-status">{{itemStatus}}</span>
|
|
</div>
|
|
|
|
<ul class="summary flexrow">
|
|
<li></li>
|
|
<li>
|
|
<input type="text" name="data.rarity" value="{{data.rarity}}" placeholder="{{ localize 'SW5E.Rarity' }}"/>
|
|
</li>
|
|
<li>
|
|
<input type="text" name="data.source" value="{{data.source}}" placeholder="{{ localize 'SW5E.Source' }}"/>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</header>
|
|
|
|
{{!-- Item Sheet Navigation --}}
|
|
<nav class="sheet-navigation tabs" data-group="primary">
|
|
<a class="item active" data-tab="description">{{ localize "SW5E.Description" }}</a>
|
|
<a class="item" data-tab="details">{{ localize "SW5E.Details" }}</a>
|
|
</nav>
|
|
|
|
{{!-- Item Sheet Body --}}
|
|
<section class="sheet-body">
|
|
|
|
{{!-- Description Tab --}}
|
|
{{> "systems/sw5e/templates/items/parts/item-description.html"}}
|
|
|
|
{{!-- Details Tab --}}
|
|
<div class="tab details" data-group="primary" data-tab="details">
|
|
<h3 class="form-header">{{localize 'SW5E.ItemContainerDetails'}}</h3>
|
|
|
|
<div class="form-group">
|
|
<label>{{localize 'SW5E.ItemContainerCapacity'}}</label>
|
|
<div class="form-fields">
|
|
<input type="text" name="data.capacity.value" value="{{data.capacity.value}}"
|
|
data-dtype="Number" placeholder="-">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>{{localize 'SW5E.ItemContainerCapacityType'}}</label>
|
|
<select name="data.capacity.type">
|
|
{{#select data.capacity.type}}
|
|
{{#each config.itemCapacityTypes}}
|
|
<option value="{{@key}}">{{localize this}}</option>
|
|
{{/each}}
|
|
{{/select}}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group stacked">
|
|
<label>{{localize 'SW5E.ItemContainerProperties'}}</label>
|
|
<label class="checkbox">
|
|
<input type="checkbox" name="data.capacity.weightless" {{checked data.capacity.weightless}}>
|
|
{{localize 'SW5E.ItemContainerWeightless'}}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</form>
|