only show passenger rights link on own journeys

This commit is contained in:
Derf Null 2023-03-24 17:49:53 +01:00
parent 36eee924aa
commit 3a3a7bfeda
No known key found for this signature in database
GPG key ID: 19E6E524EBB177BA

View file

@ -54,7 +54,7 @@
Daten wurden manuell eingetragen
</p>
% }
% if ($journey->{cancelled} or ($journey->{rt_arrival} and ($journey->{rt_arrival}->epoch - $journey->{sched_arrival}->epoch) >= 3600)) {
% if (not stash('readonly') and ($journey->{cancelled} or ($journey->{rt_arrival} and ($journey->{rt_arrival}->epoch - $journey->{sched_arrival}->epoch) >= 3600))) {
<div style="text-align: center; margin-bottom: 1em;">
% my $form_target = sprintf('/journey/passenger_rights/FGR %s %s %s.pdf', $journey->{sched_departure}->ymd, $journey->{type}, $journey->{no});
%= form_for $form_target => (method => 'POST') => begin