diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2023-07-15 19:20:37 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2023-07-15 19:20:37 +0200 |
commit | 1cca278baac0f50012e524eac7c441c998f4d8c3 (patch) | |
tree | ae292c5aef5c86e92d255e97010507c67daa02c6 /templates/_public_status_card.html.ep | |
parent | bee67f096a5732fed5cb9c3e716012b536950022 (diff) |
add timeline / current checkins
Diffstat (limited to 'templates/_public_status_card.html.ep')
-rw-r--r-- | templates/_public_status_card.html.ep | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/_public_status_card.html.ep b/templates/_public_status_card.html.ep index acbae0d..cbdc878 100644 --- a/templates/_public_status_card.html.ep +++ b/templates/_public_status_card.html.ep @@ -7,6 +7,9 @@ % if (stash('from_profile')) { Unterwegs mit <%= include '_format_train', journey => $journey %> % } + % elsif (stash('from_timeline')) { + <a href="/p/<%= $name %>"><%= $name %></a>: <%= include '_format_train', journey => $journey %> + % } % else { <a href="/p/<%= $name %>"><%= $name %></a> ist unterwegs % } @@ -16,7 +19,7 @@ <p>„<%= $journey->{comment} %>“</p> % } <p> - % if (not stash('from_profile')) { + % if (not stash('from_profile') and not stash('from_timeline')) { <div class="center-align"> %= include '_format_train', journey => $journey </div> |