diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2022-07-16 00:38:58 +0200 | 
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2022-07-16 00:38:58 +0200 | 
| commit | f1db6f88d73cc617567fae9fdf7402bd4d5dd00b (patch) | |
| tree | 3c76852b99f5171c5e80b09a952948ed0503b02b /templates | |
| parent | 29a3b1a904637a8be5fbec6e2a4ff880dd4c1ea0 (diff) | |
use shifted div for anchor to account for header bar
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/departure_list.html | 9 | 
1 files changed, 4 insertions, 5 deletions
| diff --git a/templates/departure_list.html b/templates/departure_list.html index 090e47c..08be97e 100644 --- a/templates/departure_list.html +++ b/templates/departure_list.html @@ -1,9 +1,8 @@  {% for departure in departures %} -	{% if departure.line.productName and departure.line.fahrtNr %} -		<li class="{{ departure.classes }}" data-timestamp="{{ departure.sort_by }}" id="{{departure.line.productName}}{{departure.line.fahrtNr}}"> -	{% else %} -		<li class="{{ departure.classes }}" data-timestamp="{{ departure.sort_by }}"> -	{% endif %} +	<li class="{{ departure.classes }}" data-timestamp="{{ departure.sort_by }}"> +		{% if departure.line.productName and departure.line.fahrtNr %} +			<div class="anchor" id="{{departure.line.productName}}{{departure.line.fahrtNr}}"> +		{% endif %}  		<a href="/trip/{{ departure.tripId }}?line={{ departure.quoted_line_name }}&highlight={{ departure.quoted_stop_name }}&platform={{ departure.quoted_platform() }}">  			<span class="line {{ departure.line.css_class }}">{{ departure.line.name }}</span>  			{% if departure.direction_area %} | 
