20 lines
944 B
HTML
20 lines
944 B
HTML
{% load static %}
|
|
{% load i18n %}
|
|
{% load l10n %}
|
|
{% load mastodon %}
|
|
{% load thumb %}
|
|
{% load user_actions %}
|
|
{% with activity.action_object.target as collection %}
|
|
<span class="action">
|
|
{% if activity.action_object.latest_post %}
|
|
{% include "action_reply_piece.html" with post=activity.action_object.latest_post piece=activity.action_object %}
|
|
{% include "action_like_post.html" with post=activity.action_object.latest_post %}
|
|
{% include "action_boost_post.html" with post=activity.action_object.latest_post %}
|
|
{% include "action_open_post.html" with post=activity.action_object.latest_post %}
|
|
{% endif %}
|
|
</span>
|
|
<div class="spacing">
|
|
{% blocktrans with owner_url=collection.owner.url owner_name=collection.owner.display_name %}liked <a href="{{ owner_url }}">{{ owner_name }}</a>'s collection{% endblocktrans %}
|
|
<a href="{{ collection.url }}">{{ collection.title }}</a>
|
|
</div>
|
|
{% endwith %}
|