Les rules flex+overflow pour les forms AppV2 sont dans foundryvtt-reve-de-dragon.less. Plus aucun style inline dans _onRender ni <style> dans les templates.
41 lines
949 B
Handlebars
41 lines
949 B
Handlebars
<div>
|
|
<div class="encaissement-tables">
|
|
<section>
|
|
<h2>Table mortelle</h2>
|
|
<table>
|
|
<thead>
|
|
<tr><th>Jet</th><th>Type de blessure</th><th>Endurance</th><th>Vie</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each mortel}}
|
|
<tr>
|
|
<td>{{this.jet}}</td>
|
|
<td class="type-cell">{{this.type}}</td>
|
|
<td>{{this.endurance}}</td>
|
|
<td>{{this.vie}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
<section>
|
|
<h2>Table non-mortelle</h2>
|
|
<table>
|
|
<thead>
|
|
<tr><th>Jet</th><th>Type de blessure</th><th>Endurance</th><th>Vie</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each nonmortel}}
|
|
<tr>
|
|
<td>{{this.jet}}</td>
|
|
<td class="type-cell">{{this.type}}</td>
|
|
<td>{{this.endurance}}</td>
|
|
<td>{{this.vie}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
</div>
|
|
</div>
|