<table class='table-resolution'>
  <tr>
    {{#if (gt min -8)}}
    <th class="table-resolution-level">-8</th>
    {{/if}}
    {{#if (gt min -7)}}
    <th class="table-resolution-level">...</th>
    {{/if}}
    {{#each cols as |col|}}
    <th class="table-resolution-level">{{plusMoins col}}</th>
    {{/each}}
  </tr>
  {{#each rows as |row|}}
    <tr>
      {{#if (gt @root.min -8)}}
        <td class="table-resolution-carac" data-row="{{row}}" data-col="{{col}}">{{computeResolutionScore row -8}}</td>
      {{/if}}
      {{#if (gt @root.min -7)}}
        <td class=""></td>
      {{/if}}
      {{#each @root.cols as |col|}}
      {{#if (and (eq row @root.carac) (eq col @root.difficulte))}}
      <td class="table-resolution-target">{{computeResolutionScore row col}}</td>
      {{else if (eq col -8)}}
      <td class="table-resolution-carac">{{computeResolutionScore row col}}</td>
      {{else}}
      <td>{{computeResolutionScore row col}}</td>
      {{/if}}
      </td>
      {{/each}}
    </tr>
  {{/each}}
</table>
{{#with (computeResolutionChances carac difficulte) as |cell|}}
<div>
  <span class="table-proba-reussite">
    Particulière: <span class="rdd-roll-part">{{cell.part}}</span>
    - Significative: <span class="rdd-roll-sign">{{cell.sign}}</span>
    - Réussite: <span class="rdd-roll-norm">{{cell.score}}</span>
    - Echec Particulier: <span class="rdd-roll-epart">{{cell.epart}}</span>
    - Echec Total: <span class="rdd-roll-etotal">{{cell.etotal}}</span>
  </span>
</div>
{{/with}}