Intensity list reworked

This commit is contained in:
Gregory Trullemans 2023-11-22 16:29:56 +01:00
parent fe65759fe6
commit dd20d18b83
1 changed files with 10 additions and 10 deletions

View File

@ -33,11 +33,11 @@
<th style="width: 6%" class="header text-center"># Skill</th>
<th style="width: 6%" class="header text-center">Diff</th>
<th style="width: 7%" class="header text-center">T/p</th>
<th style="width: 7%" class="header text-center">D/p</th>
<th style="width: 7%" class="header text-center">S/T</th>
<th style="width: 7%" class="header text-center">S/p</th>
<th style="width: 7%" class="header text-center">D/S</th>
<th style="width: 7%" class="header text-center">T/p</th><!-- Time by passe -->
<th style="width: 7%" class="header text-center">D/p</th><!-- Difficulty by passe -->
<th style="width: 7%" class="header text-center">S/p</th><!-- # skill by passe -->
<th style="width: 7%" class="header text-center">D/S</th><!-- Difficulty by skill -->
<th style="width: 7%" class="header text-center">S/T</th><!-- Skill by time -->
</tr>
</thead>
<tbody>
@ -60,7 +60,7 @@
<td class="text-right">{{ intensity.quantity_of_skill }}</td>
<td class="text-right">{{ intensity.difficulty_in_unit }}</td>
<td class="text-right">
<td class="text-right"><!-- Time by passe -->
<b>
{% if intensity.mean_time_by_passe > 4.13 %}
<span class="text-danger">{{ intensity.mean_time_by_passe | floatformat:2 }}</span>
@ -71,8 +71,8 @@
{% endif %}
</b>
</td>
<td class="text-right">{{ intensity.mean_difficulty_by_passe_in_unit | floatformat:2 }}</td>
<td class="text-right">
<td class="text-right">{{ intensity.mean_difficulty_by_passe_in_unit | floatformat:2 }}</td><!-- Difficulty by passe -->
<td class="text-right"><!-- # skill by passe -->
<b>
{% if intensity.mean_quantity_of_skill_by_time > 2.37 %}
<span class="text-danger">{{ intensity.mean_quantity_of_skill_by_time | floatformat:2 }}</span>
@ -83,7 +83,7 @@
{% endif %}
</b>
</td>
<td class="text-right">
<td class="text-right"><!-- Difficulty by skill -->
<b>
{% if intensity.quantity_of_skill_by_passe > 7.37 %}
<span class="text-danger">{{ intensity.quantity_of_skill_by_passe | floatformat:2 }}</span>
@ -94,7 +94,7 @@
{% endif %}
</b>
</td>
<td class="text-right">{{ intensity.mean_difficulty_by_skill | floatformat:2 }}</td>
<td class="text-right">{{ intensity.mean_difficulty_by_skill | floatformat:2 }}</td><!-- Skill by time -->
</tr>
{% endfor %}
</tbody>