mirror of
https://github.com/derf/travelynx
synced 2024-11-13 00:07:09 +00:00
16 lines
543 B
Text
16 lines
543 B
Text
<div>
|
|
<a href="/timeline/in-transit">
|
|
% if (@{$timeline} <= 2) {
|
|
<strong><%= $timeline->[0]->{followee_name} %></strong>
|
|
% }
|
|
% if (@{$timeline} == 1) {
|
|
ist gerade <%= stash('from_checkin') ? 'auch' : q{} %> unterwegs
|
|
% }
|
|
% elsif (@{$timeline} == 2) {
|
|
und <strong><%= $timeline->[1]->{followee_name} %></strong> sind gerade <%= stash('from_checkin') ? 'auch' : q{} %> unterwegs
|
|
% }
|
|
% else {
|
|
<strong><%= scalar @{$timeline} %></strong> Accounts sind gerade <%= stash('from_checkin') ? 'auch' : q{} %> unterwegs
|
|
% }
|
|
</a>
|
|
</div>
|