COrrections, WIP

This commit is contained in:
2026-04-24 22:04:09 +02:00
parent d75b6cb945
commit e200b5f7b0
126 changed files with 768 additions and 5805 deletions

View File

@@ -1,8 +0,0 @@
<fieldset class="properties">
<legend class="section-header">{{#if propertyTitle}}{{localize propertyTitle}}{{else}}{{localize 'l5r5e.sheets.properties'}}{{/if}}</legend>
<ul class="item-list">
{{#each properties as |property id|}}
{{> 'systems/l5rx-chiaroscuro/templates/items/property/property-entry.html' property=property id=id editable=../options.editable}}
{{/each}}
</ul>
</fieldset>

View File

@@ -1,9 +0,0 @@
<li class="item property flexcol" data-property-id="{{property.id}}">
<ul class="item-header property-control">
<li class="item-img"><img src="{{property.img}}" title="{{property.name}}" width="32px" height="32px"/></li>
<li class="item-name {{#if removed}}removed{{else}}l5r5e-tooltip{{/if}}" data-property-id="{{property.id}}">{{property.name}}</li>
{{#if editable}}
<li class="property-delete" title="{{localize 'Delete'}}"><i class="fas fa-trash"></i></li>
{{/if}}
</ul>
</li>

View File

@@ -1,13 +0,0 @@
<form class="{{cssClass}}" autocomplete="off">
<header class="sheet-header">
<img class="profile-img" src="{{data.img}}" data-edit="img" title="{{data.name}}"/>
<h1 class="charname"><input name="name" type="text" value="{{data.name}}" placeholder="Name"/></h1>
</header>
{{!-- Sheet Body --}}
<section class="sheet-body">
<article class="properties" data-group="primary" data-tab="properties">
{{> 'systems/l5rx-chiaroscuro/templates/items/property/properties.html' properties=data.propertiesList propertyTitle='l5r5e.sheets.removed_properties'}}
</article>
{{> 'systems/l5rx-chiaroscuro/templates/items/item/item-infos.html'}}
</section>
</form>

View File

@@ -1,16 +0,0 @@
<div class="{{cssClass}}" data-actor-id="{{actor._id}}" data-item-id="{{data._id}}">
<header class="card-header">
<h2 class="item-name"><img src="{{data.img}}" title="{{data.name}}" /> {{data.name}}</h2>
</header>
<section class="sheet-body">
<ul>
{{!--cancelled properties--}}
<li>
<strong>{{localize 'l5r5e.sheets.removed_properties'}}</strong> :
{{#each data.system.properties as |property idx|}}{{#ifCond idx '>' 0}}, {{/ifCond}}{{property.name}}{{/each}}
</li>
</ul>
{{> 'systems/l5rx-chiaroscuro/templates/items/item/item-text-partial-reference.html'}}
</section>
</div>