summaryrefslogtreecommitdiff
path: root/templates/_departures_iris.html.ep
blob: c8dd834ff06bcf629def507312f6fc5e238d3300 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<table class="striped departures">
<tbody>
% my $orientation_bar_shown = param('train');
% my $now_epoch = now->epoch;
% for my $result (@{$results}) {
	% my $td_class = '';
	% my $link_class = 'action-checkin';
	% if ($result->departure_is_cancelled) {
		% $td_class = "cancelled";
		% $link_class = 'action-cancelled-from';
	% }
	% if (not $orientation_bar_shown and $result->departure->epoch < $now_epoch) {
		% $orientation_bar_shown = 1;
		<tr class="now">
			<td>
			</td>
			<td>
				<strong>— Anfragezeitpunkt —</strong>
			</td>
			<td><strong>
				%= now->strftime('%H:%M')
			</strong></td>
		</tr>
	% }
	<tr class="<%= $link_class %>" data-station="<%= $result->station_uic %>" data-train="<%= $result->train_id %>" data-ts="<%= ($result->sched_departure // $result->departure)->epoch %>" data-tr="3">
		<td>
			<a>
				<%= $result->line %>
			</a>
		</td>
		<td class="<%= $td_class %>">
			<a>
				<%= $result->destination %>
			</a>
			% for my $checkin (@{$checkin_by_train->{$result->train_id} // []}) {
				<br/>(<%= $checkin->{followee_name} %> → <%= $checkin->{arr_name} // '???' %>)
			% }
		</td>
		<td class="<%= $td_class %>">
			% if ($result->departure_hidden) {
				(<%= $result->departure->strftime('%H:%M') %>)
			% }
			% else {
				%= $result->departure->strftime('%H:%M')
			% }
			% if ($result->departure_delay) {
				(<%= sprintf('%+d', $result->departure_delay) %>)
			% }
			% elsif (not $result->has_realtime and $result->start->epoch < $now_epoch) {
				<i class="material-icons" aria-label="Keine Echtzeitdaten vorhanden" style="font-size: 16px;">gps_off</i>
			% }
		</td>
	</tr>
% }
</tbody>
</table>