diff --git a/catalog/templates/_item_comments.html b/catalog/templates/_item_comments.html
index 07dc3622..c0bb78f1 100644
--- a/catalog/templates/_item_comments.html
+++ b/catalog/templates/_item_comments.html
@@ -49,6 +49,7 @@
{% if comment.latest_post %}
{% include "action_reply_piece.html" with post=comment.latest_post piece=comment %}
{% include "action_like_post.html" with post=comment.latest_post %}
+ {% include "action_boost_post.html" with post=comment.latest_post %}
{% include "action_open_post.html" with post=comment.latest_post %}
{% endif %}
diff --git a/catalog/templates/_item_comments_by_episode.html b/catalog/templates/_item_comments_by_episode.html
index 0487894e..52018fec 100644
--- a/catalog/templates/_item_comments_by_episode.html
+++ b/catalog/templates/_item_comments_by_episode.html
@@ -51,15 +51,12 @@
{% if forloop.counter <= 10 %}
-
- {% liked_piece comment as liked %}
- {% include 'like_stats.html' with liked=liked piece=comment %}
-
-
-
-
+ {% if comment.latest_post %}
+ {% include "action_reply_piece.html" with post=comment.latest_post piece=comment %}
+ {% include "action_like_post.html" with post=comment.latest_post %}
+ {% include "action_boost_post.html" with post=comment.latest_post %}
+ {% include "action_open_post.html" with post=comment.latest_post %}
+ {% endif %}
{% if comment.rating_grade %}{{ comment.rating_grade|rating_star }}{% endif %}
diff --git a/catalog/templates/_item_reviews.html b/catalog/templates/_item_reviews.html
index d14bd0dc..b814afd0 100644
--- a/catalog/templates/_item_reviews.html
+++ b/catalog/templates/_item_reviews.html
@@ -14,6 +14,7 @@
{% if review.latest_post %}
{% include "action_reply_piece.html" with post=review.latest_post piece=review href=review.url %}
{% include "action_like_post.html" with post=review.latest_post %}
+ {% include "action_boost_post.html" with post=review.latest_post %}
{% include "action_open_post.html" with post=review.latest_post %}
{% endif %}
diff --git a/catalog/templates/_item_user_pieces.html b/catalog/templates/_item_user_pieces.html
index 3e90664a..c7919dbf 100644
--- a/catalog/templates/_item_user_pieces.html
+++ b/catalog/templates/_item_user_pieces.html
@@ -59,16 +59,14 @@
hx-target="body"
hx-swap="beforeend">
-
- {% liked_piece mark.comment as liked %}
- {% include 'like_stats.html' with liked=liked piece=mark.comment %}
-
-
-
-
- {% comment %} {{ mark.comment.created_time|date }} {% endcomment %}
+ {% if mark.comment.latest_post %}
+ {% include "action_like_post.html" with post=mark.comment.latest_post %}
+ {% include "action_boost_post.html" with post=mark.comment.latest_post %}
+ {% include "action_open_post.html" with post=mark.comment.latest_post %}
+ {% endif %}
+ {% comment %}
+ {{ mark.comment.created_time|date }}
+ {% endcomment %}
{{ mark.comment.html|safe }}
{% endif %}
@@ -82,15 +80,11 @@
hx-target="body"
hx-swap="beforeend">
-
- {% liked_piece comment as liked %}
- {% include 'like_stats.html' with liked=liked piece=comment %}
-
-
-
-
+ {% if comment.latest_post %}
+ {% include "action_like_post.html" with post=comment.latest_post %}
+ {% include "action_boost_post.html" with post=comment.latest_post %}
+ {% include "action_open_post.html" with post=comment.latest_post %}
+ {% endif %}
{% comment %} {{ comment.created_time|date }} {% endcomment %}
@@ -120,16 +114,14 @@
-
- {% liked_piece mark.review as liked %}
- {% include 'like_stats.html' with liked=liked piece=mark.review %}
-
-
-
-
+ {% if review.latest_post %}
+ {% include "action_like_post.html" with post=review.latest_post %}
+ {% include "action_boost_post.html" with post=review.latest_post %}
+ {% include "action_open_post.html" with post=review.latest_post %}
+ {% endif %}
+ {% comment %}
{{ mark.review.created_time|date }}
+ {% endcomment %}
{{ review.title }}
diff --git a/catalog/templates/item_mark_list.html b/catalog/templates/item_mark_list.html
index ed0c3505..3110eb36 100644
--- a/catalog/templates/item_mark_list.html
+++ b/catalog/templates/item_mark_list.html
@@ -34,17 +34,12 @@
{% with member.mark as mark %}
- {% if mark.comment %}
-
- {% liked_piece mark.comment as liked %}
- {% include 'like_stats.html' with liked=liked piece=mark.comment %}
-
+ {% if mark.comment.latest_post %}
+ {% include "action_reply_piece.html" with post=mark.comment.latest_post piece=mark.comment %}
+ {% include "action_like_post.html" with post=mark.comment.latest_post %}
+ {% include "action_boost_post.html" with post=mark.comment.latest_post %}
{% endif %}
-
-
-
+ {% include "action_open_post.html" with post=mark.shelfmember.latest_post %}
{{ mark.created_time|date }}