removes old sheet

feature/applicationv2
macniel 2025-10-15 16:25:11 +02:00
parent 3869982927
commit 343d180568
1 changed files with 0 additions and 35 deletions

View File

@ -1,35 +0,0 @@
<form class="{{cssClass}} {{actor.type}} flexcol" autocomplete="off">
{{!-- Sheet Tab Navigation --}}
<nav class="sheet-tabs tabs" style="flex: 0" data-group="primary">
<a class="item" data-tab="advantage">Vorteil</a>
</nav>
{{!-- Sheet Body --}}
<section class="sheet-body" style="flex: 1">
<div class="tab advantage {{#if hasModality}}modality{{/if}}" data-group="primary" data-tab="advantage">
<div>
<label>Name</label>
<input name="system.name" value="{{system.name}}"/>
</div>
{{#if hasModality}}
<div>
<label>Auswahl</label>
{{#if hasChoices}}
<select name="system.gruppe">
{{selectOptions choices selected=system.auswahl inverted=true}}
</select>
{{else}}
<input name="system.value" value="{{system.value}}"/>
{{/if}}
</div>
{{/if}}
<div class="body">
<label>Beschreibung</label>
{{editor system.description target="system.description" button=true owner=owner editable=editable}}
</div>
</div>
</section>
</form>