3db03f5159
- Fixed grid-2 to grid-2col CSS class usage
- Replaced improper <p><a> tags with <div><a> in item lists (actor-weapons, actor-defenses, group-items, group-vehicles)
- Fixed typos: smarttlk -> smarttl, compétence -> Compétence
- Fixed duplicate class attributes
- Standardized HTML comments to Handlebars comments ({{!-- --}})
- Added missing localizations for Character and Skills headers
- Removed orphan {{/if}} tag in character-id.hbs
- Created npc-skill-category.hbs partial to eliminate 150+ lines of duplicated skill category code in actor-npc-sheet.hbs
- Created item-list.hbs partial for reusable item list display
- Fixed html.find(...).forEach error in roll.mjs by ensuring jQuery object
- Added .history/ to .gitignore
Generated by Mistral Vibe.
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
42 lines
2.1 KiB
Handlebars
42 lines
2.1 KiB
Handlebars
{{!-- HEADER --}}
|
|
<header class="char-header grid grid-12col w-full" style="max-height: 110px;">
|
|
<div class="grid-span-2">
|
|
<img class="profile-img" src="{{actor.img}}" data-edit="img" width="100"
|
|
height="100" title="{{actor.name}}" />
|
|
</div>
|
|
<section class="char-details grid-span-5">
|
|
<h1 class="char-name flexrow flex-group-left w-full">
|
|
<label>{{ localize 'IDENTITY.name' }}</label>
|
|
<input name="name" type="text" value="{{actor.name}}"
|
|
placeholder="Nom du groupe" />
|
|
</h1>
|
|
<div class="profile flexrow flex-group-center">
|
|
<label>{{ localize 'IDENTITY.profile' }}</label>
|
|
<input name="system.identity.profile" type="text"
|
|
value="{{system.identity.profile}}" data-dtype="String" />
|
|
</div>
|
|
</section>
|
|
<section class="char-level grid-span-5">
|
|
<h1 class="char-vermine2047 flexrow flex-group-left w-full">
|
|
<label for="system.identity.totem">{{ localize 'IDENTITY.totem' }}</label>
|
|
{{#if (eq system.identity.totem "")}}
|
|
<a name="chooseTotem" class="chooseTotem">Choisissez…</a>
|
|
{{ else }}
|
|
<a name="chooseTotem" class="chooseTotem">{{ smarttl "TOTEMS" system.identity.totem }}</a>
|
|
{{/if}}
|
|
</h1>
|
|
<div class="level flexrow flex-group-center">
|
|
<label>{{ localize 'VERMINE.level' }}</label>
|
|
<input name="system.level.value" type="number"
|
|
value="{{system.level.value}}" data-dtype="Number" min="{{system.level.min}}" max="{{system.level.max}}" />
|
|
<span>/ {{system.level.max}}</span>
|
|
</div>
|
|
<div class="reputation flexrow flex-group-center">
|
|
<label>{{ localize 'VERMINE.reputation' }}</label>
|
|
<input name="system.reputation.value" type="number"
|
|
value="{{system.reputation.value}}" data-dtype="Number" min="{{system.reputation.min}}" max="{{system.reputation.max}}" />
|
|
<span>/ {{system.reputation.max}}</span>
|
|
</div>
|
|
</section>
|
|
</header>
|