diff --git a/common/templates/partial/_footer.html b/common/templates/partial/_footer.html
index 0b597ba6..d10a5a4b 100644
--- a/common/templates/partial/_footer.html
+++ b/common/templates/partial/_footer.html
@@ -17,3 +17,8 @@
+
diff --git a/common/templates/partial/_navbar.html b/common/templates/partial/_navbar.html
index b1f3d77b..222d0206 100644
--- a/common/templates/partial/_navbar.html
+++ b/common/templates/partial/_navbar.html
@@ -10,8 +10,8 @@
-
-
+
-
diff --git a/journal/templates/collection.html b/journal/templates/collection.html
index be8fb570..4459ca0c 100644
--- a/journal/templates/collection.html
+++ b/journal/templates/collection.html
@@ -8,6 +8,8 @@
{% load truncate %}
{% load thumb %}
{% load collection %}
+{% load user_actions %}
+
@@ -40,10 +42,7 @@
{{ collection.title }}
{% if collection.visibility > 0 %}
-
@@ -54,10 +53,16 @@
{{ collection.edited_time }}
-
+
+
+ {% liked_piece collection as liked %}
+ {% include 'like_stats.html' with liked=liked piece=collection %}
+
{% if request.user == collection.owner %}
+
{% trans '编辑' %}
{% trans '删除' %}
+
{% elif editable %}
可协作整理
{% endif %}
@@ -93,9 +98,6 @@
{% endif %}
{% endfor %}
- {% if follower_count %}
-
{{ follower_count }}人关注
- {% endif %}
diff --git a/journal/templates/collection_share.html b/journal/templates/collection_share.html
index 02bd7ec9..f1f1a683 100644
--- a/journal/templates/collection_share.html
+++ b/journal/templates/collection_share.html
@@ -15,13 +15,7 @@
diff --git a/journal/templates/comment.html b/journal/templates/comment.html
index f3df1a11..b316f3f9 100644
--- a/journal/templates/comment.html
+++ b/journal/templates/comment.html
@@ -15,12 +15,7 @@
{% trans '评论单集' %} {{ item.title }}: {{ focus_item.title }}
-
-
-
+
diff --git a/journal/templates/like_stats.html b/journal/templates/like_stats.html
new file mode 100644
index 00000000..dbcfedbd
--- /dev/null
+++ b/journal/templates/like_stats.html
@@ -0,0 +1,11 @@
+{% if liked %}
+
+
+ {{ piece.like_count }}
+
+{% else %}
+
+
+ {% if piece.like_count %}{{ piece.like_count }}{% endif %}
+
+{% endif %}
diff --git a/journal/templates/list_item_base.html b/journal/templates/list_item_base.html
index 60d6e4af..5037fabf 100644
--- a/journal/templates/list_item_base.html
+++ b/journal/templates/list_item_base.html
@@ -17,7 +17,7 @@
{% if collection_edit %}
-
+
{% if not forloop.first %}
▲
{% endif %}
@@ -86,12 +86,9 @@
data-rating-score="{{ mark.rating | floatformat:0 }}" style="left: -4px;">
{% endif %}
{% if mark.visibility > 0 %}
-
+
{% endif %}
-
+
{% trans '标记于' %} {{ member.created_time|date }}
@@ -102,16 +99,13 @@
{% if mark.review %}
-
+
{% trans '评论于' %} {{ mark.review.created_time|date }}
{{ mark.review.title }}
{% if mark.review.visibility > 0 %}
-
+
{% endif %}
@@ -130,7 +124,7 @@
{% if collection_member.note %} {{ collection_member.note }} {% endif %}
{% if collection_edit %}
-
+
{% endif %}
diff --git a/journal/templates/mark.html b/journal/templates/mark.html
index b2872c0c..37b4ef25 100644
--- a/journal/templates/mark.html
+++ b/journal/templates/mark.html
@@ -15,15 +15,9 @@
{% trans '标记' %} {{ item.title }}
-
-
+
-
-
+
-
-
+
diff --git a/social/templates/activity/create_collection.html b/social/templates/activity/create_collection.html
index aa1e4aa0..e7b690e0 100644
--- a/social/templates/activity/create_collection.html
+++ b/social/templates/activity/create_collection.html
@@ -19,30 +19,31 @@
{% endif %}
-
+
+ {{ activity.owner.display_name }} {% trans '创建了收藏单' %}
+
+
+
+
+
diff --git a/social/templates/activity/feature_collection.html b/social/templates/activity/feature_collection.html
index b059a514..6423c1ce 100644
--- a/social/templates/activity/feature_collection.html
+++ b/social/templates/activity/feature_collection.html
@@ -20,15 +20,15 @@
{% endif %}
-
-
+
diff --git a/social/templates/activity/like_collection.html b/social/templates/activity/like_collection.html
index 9c8cad7b..06902cd2 100644
--- a/social/templates/activity/like_collection.html
+++ b/social/templates/activity/like_collection.html
@@ -19,15 +19,15 @@
{% endif %}
-
-
+
diff --git a/social/templates/activity/mark_item.html b/social/templates/activity/mark_item.html
index 2a8b90b3..926e92e8 100644
--- a/social/templates/activity/mark_item.html
+++ b/social/templates/activity/mark_item.html
@@ -10,6 +10,7 @@
{% load user_actions %}
{% wish_item_action activity.action_object.item as action %}
+{% like_piece_action activity.action_object as like_action %}
-
-
+
@@ -56,4 +77,9 @@
{{ activity.action_object.mark.comment_html|safe }}
{% endif %}
+
diff --git a/social/templates/activity/review_item.html b/social/templates/activity/review_item.html
index 4be4a031..14f5c8e7 100644
--- a/social/templates/activity/review_item.html
+++ b/social/templates/activity/review_item.html
@@ -19,15 +19,35 @@
{% endif %}
-
-
+
diff --git a/social/templates/feed.html b/social/templates/feed.html
index d0b74314..7bce0889 100644
--- a/social/templates/feed.html
+++ b/social/templates/feed.html
@@ -37,7 +37,9 @@
-->
diff --git a/social/templates/feed_data.html b/social/templates/feed_data.html
index 24199a4b..1b1cbabd 100644
--- a/social/templates/feed_data.html
+++ b/social/templates/feed_data.html
@@ -17,62 +17,11 @@
{% if forloop.last %}
-
-
+
{% endif %}
{% empty %}
@@ -93,4 +42,4 @@ hx-swap="outerHTML">
starSize: 15,
});
});
-
\ No newline at end of file
+
diff --git a/users/templates/users/relation_list.html b/users/templates/users/relation_list.html
index 7604ff0b..ea602e5a 100644
--- a/users/templates/users/relation_list.html
+++ b/users/templates/users/relation_list.html
@@ -82,9 +82,7 @@