summaryrefslogtreecommitdiff
path: root/templates/departures.html.ep
blob: bbe0149ed5d988ca40ae30ec3543968e4ebaa5cf (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
<div class="row">
	<div class="col s12">
		% my $status = $self->get_user_status;
		% if ($status->{checked_in}) {
			<div class="card grey darken-4">
				<div class="card-content white-text">
					<span class="card-title">Aktuell eingecheckt</span>
					<p>In <%= $status->{train_type} %> <%= $status->{train_no} %>
						ab <%= $status->{station_name} %></p>
				</div>
				<div class="card-action">
					<a href="/a/checkout?station=<%= $ds100 %>">Hier auschecken</a>
				</div>
			</div>
		% }
	</div>
</div>
<div class="row">
	<table class="striped">
		<thead>
			<tr>
				<th>Zug</th>
				<th></th>
				<th>Abfahrt</th>
			</tr>
		</thead>
		<tbody>
			% for my $result (@{$results}) {
				<tr>
					<td>
						<a href="/a/checkin?station=<%= $ds100 %>&amp;train=<%= $result->train_id %>" title="Check In">
							<%= $result->line %>
						</a>
					</td>
					<td>
						<a href="/a/checkin?station=<%= $ds100 %>&amp;train=<%= $result->train_id %>" title="Check In">
							<%= $result->destination %>
						</a>
					</td>
					<td><%= $result->departure->strftime('%H:%M') %>
						% if ($result->departure_delay) {
							(+<%= $result->departure_delay %>)
						% }
					</td>
				</tr>
			% }
		</tbody>
	</table>
</div>