diff options
-rw-r--r-- | templates/departure_list.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/departure_list.html b/templates/departure_list.html index de7b48d..3762a03 100644 --- a/templates/departure_list.html +++ b/templates/departure_list.html @@ -23,7 +23,10 @@ <span class="dest" aria-label="nach {{ departure.direction }}">{{ departure.direction }} </span> {% if departure.cancelled and departure.plannedWhen %} - <span class="time" aria-label="um {{ departure.plannedWhen }}">{{ departure.plannedWhen.strftime("%H:%M") }}</span> + <span class="time" aria-label="fällt aus, planmäßige Abfahrt um {{ departure.plannedWhen }}"> + <span class="delay">fällt aus</span> + {{ departure.plannedWhen.strftime("%H:%M") }} + </span> {% else %} <span class="time" aria-label="Abfahrtszeit: {{ departure.relativeWhen }}"> {% if departure.delay %} |