16 lines
916 B
Twig
16 lines
916 B
Twig
<div class="tile charge-time-tile">
|
|
<div class="tile-title">
|
|
<i class="fas fa-clock" style="color: #007acc; margin-right: 8px;"></i>
|
|
Ladedauer
|
|
</div>
|
|
<div class="charge-time" style="margin-top: 12px; text-align: center;">
|
|
{% if tile.chargeTimeProperties.minutesFrom10To80 %}
|
|
<div style="font-weight: bold; font-size: 28px; color: #007acc; margin-bottom: 4px;">{{ tile.chargeTimeProperties.minutesFrom10To80 }}</div>
|
|
<div style="font-size: 12px; color: #666;">Minuten (10-80%)</div>
|
|
{% elseif tile.chargeTimeProperties.minutesFrom20To80 %}
|
|
<div style="font-weight: bold; font-size: 28px; color: #007acc; margin-bottom: 4px;">{{ tile.chargeTimeProperties.minutesFrom20To80 }}</div>
|
|
<div style="font-size: 12px; color: #666;">Minuten (20-80%)</div>
|
|
{% endif %}
|
|
</div>
|
|
<small style="color: #666;">DC Schnellladen</small>
|
|
</div> |