diff options
| author | Daniel Friesel <daniel.friesel@uos.de> | 2020-01-09 18:13:37 +0100 | 
|---|---|---|
| committer | Daniel Friesel <daniel.friesel@uos.de> | 2020-01-09 18:13:37 +0100 | 
| commit | c6a0c76092f1cb4757e0d1c6b9b87fa39bdf9dca (patch) | |
| tree | 459647cdebfa3e74bb6197b11f2ed50e3d0d7968 | |
| parent | 873a4dc082d2ae6512c2f490baaf24113d970787 (diff) | |
checked in view: Add details panel1.13.2
| -rw-r--r-- | templates/_checked_in.html.ep | 37 | 
1 files changed, 22 insertions, 15 deletions
| diff --git a/templates/_checked_in.html.ep b/templates/_checked_in.html.ep index 62c9e78..7e9bfd0 100644 --- a/templates/_checked_in.html.ep +++ b/templates/_checked_in.html.ep @@ -163,7 +163,7 @@  					</div>  				</p>  			% } -			% if (@{$journey->{messages} // []} or @{$journey->{extra_data}{him_msg} // []} or @{$journey->{extra_data}{qos_msg} // []}) { +			% if (@{$journey->{messages} // []} or @{$journey->{extra_data}{qos_msg} // []}) {  				<p style="margin-bottom: 2ex;">  					<ul>  						% for my $message (reverse @{$journey->{messages} // []}) { @@ -176,9 +176,6 @@  								<li> <i class="material-icons tiny">info</i> <%= $message->[0]->strftime('%H:%M') %>: <%= $message->[1] %></li>  							% }  						% } -						% for my $message (@{$journey->{extra_data}{him_msg} // []}) { -							<li> <i class="material-icons tiny">info</i> <%= $message->{header} %> <%= $message->{lead} %></li> -						% }  					</ul>  				</p>  			% } @@ -260,20 +257,30 @@  			% }  		</div>  	</div> -%#	<div class="row" style="margin-top: 2em;"> -%#		<div class="col s6 center-align"> -%#			% my $url = 'https://marudor.de/details/' . $journey->{train_type} . ' ' . $journey->{train_no} . '/' . DateTime->now(time_zone => 'Europe/Berlin')->epoch . '000'; -%#			<a href="<%= $url %>" class="waves-effect waves-light btn"><i class="material-icons left">timeline</i> Zuglauf</a> -%#		</div> -%#		<div class="col s6 center-align"> -%#			% if ($journey->{extra_data}{trip_id}) { -%#				<a href="https://dbf.finalrewind.org/map/<%= $journey->{extra_data}{trip_id} %>/<%= $journey->{train_line} || 0 %>" class="waves-effect waves-light btn"><i class="material-icons left">map</i> Karte</a> -%#			% } -%#		</div> -%#	</div>  	% if ($journey->{arr_name}) {  		<div class="card" style="margin-top: 3em;">  			<div class="card-content"> +				<span class="card-title">Details</span> +				% if (@{$journey->{extra_data}{him_msg} // []}) { +					<p style="margin-bottom: 2ex;"> +						<ul> +							% for my $message (@{$journey->{extra_data}{him_msg} // []}) { +								<li> <i class="material-icons tiny">info</i> <%= $message->{header} %> <%= $message->{lead} %></li> +							% } +						</ul> +					</p> +				% } +			</div> +			<div class="card-action"> +				% my $url = 'https://marudor.de/details/' . $journey->{train_type} . ' ' . $journey->{train_no} . '/' . DateTime->now(time_zone => 'Europe/Berlin')->epoch . '000'; +				<a style="margin-right: 0;" href="<%= $url %>"><i class="material-icons left">timeline</i> Zuglauf</a> +				% if ($journey->{extra_data}{trip_id}) { +					<a class="right" style="margin-right: 0;" href="https://dbf.finalrewind.org/map/<%= $journey->{extra_data}{trip_id} %>/<%= $journey->{train_line} || 0 %>?from=<%= $journey->{dep_name} %>&to=<%= $journey->{arr_name} %>&dark=<%= (session('theme') and session('theme') eq 'dark') ? 1 : 0 %>"><i class="material-icons left">map</i> Karte</a> +				% } +			</div> +		</div> +		<div class="card" style="margin-top: 3em;"> +			<div class="card-content">  				<i class="material-icons small right sync-failed-marker grey-text" style="display: none;">sync_problem</i>  				<span class="card-title">Ziel ändern?</span>  				<table> | 
