evwiki/templates/result/tiles/realrange.html.twig
2025-05-28 09:04:15 +02:00

18 lines
1.0 KiB
Twig

<div class="tile real-range-tile">
<div class="tile-title">Praxis-Tests</div>
<div class="real-tests" style="margin-top: 8px;">
{% for realTest in tile.realRangeTests|slice(0, 3) %}
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; padding: 4px 8px; background: rgba(40,167,69,0.1); border-radius: 4px; font-size: 13px;">
<span style="color: #28a745;">
{% if realTest.season %}{{ realTest.season.value }}{% endif %}
{% if realTest.averageSpeed %}{{ realTest.averageSpeed }}{% endif %}
</span>
<span style="font-weight: bold;">{{ realTest.range.kilometers }} km</span>
</div>
{% endfor %}
{% if tile.realRangeTests|length > 3 %}
<small style="color: #666; font-style: italic; text-align: center; display: block;">+{{ tile.realRangeTests|length - 3 }} weitere</small>
{% endif %}
</div>
<small style="color: #666;">Real-World Reichweite</small>
</div>