diff --git a/catalog/templates/item_base.html b/catalog/templates/item_base.html
index 7ed238bb..ffd7693d 100644
--- a/catalog/templates/item_base.html
+++ b/catalog/templates/item_base.html
@@ -67,7 +67,7 @@
{% endfor %}
- 这里是全剧条目,建议选择单季标记
+ 这是全剧条目,以下是可标记的单季
{% if item.class_name == 'tvshow' %}
{% with item.all_seasons as seasons %}
{% if seasons %}
diff --git a/catalog/templates/item_comments.html b/catalog/templates/item_comments.html
index ef1f5e94..f957a598 100644
--- a/catalog/templates/item_comments.html
+++ b/catalog/templates/item_comments.html
@@ -20,16 +20,20 @@
rel="noopener"
{% if comment.metadata.shared_link %} href="{{ comment.metadata.shared_link }}" title="打开联邦网络分享链接" {% else %} class="disabled" {% endif %}>
-
{{ comment.created_time|date }}
{% if comment.rating_grade %}{{ comment.rating_grade|rating_star }}{% endif %}
{{ comment.owner.display_name }}
- {{ comment.mark.action_label }}
{% if comment.focus_item %}{{ comment.focus_item.title }}{% endif %}
+
+
+ {{ comment.created_time|date }}
+ {{ comment.mark.action_label }}
+
+
{{ comment.html|safe }}
{% else %}
diff --git a/catalog/templates/item_reviews.html b/catalog/templates/item_reviews.html
index 9b0c6b19..99ad4075 100644
--- a/catalog/templates/item_reviews.html
+++ b/catalog/templates/item_reviews.html
@@ -20,14 +20,15 @@
rel="noopener"
{% if review.metadata.shared_link %} href="{{ review.metadata.shared_link }}" title="打开联邦网络分享链接" {% else %} class="disabled" {% endif %}>
-
{{ review.created_time|date }}
{% if review.rating_grade %}{{ review.rating_grade|rating_star }}{% endif %}
{{ review.owner.display_name }}
- {{ review.mark.action_label | default:"" }}
+
+
+ {{ review.created_time|date }}
diff --git a/common/static/scss/_common.scss b/common/static/scss/_common.scss
index f39ab1ce..79254bbc 100644
--- a/common/static/scss/_common.scss
+++ b/common/static/scss/_common.scss
@@ -53,10 +53,6 @@ details {
margin: 0;
}
-section section {
- margin-bottom: var(--pico-spacing) !important;
-}
-
.empty {
font-style: italic;
font-size: 80%;
diff --git a/journal/views.py b/journal/views.py
index 6b2e34d1..1abeeec1 100644
--- a/journal/views.py
+++ b/journal/views.py
@@ -376,7 +376,6 @@ def collection_share(request, collection_uuid):
raise BadRequest()
-@login_required
def collection_retrieve_items(request, collection_uuid, edit=False, msg=None):
collection = get_object_or_404(Collection, uid=get_uuid_or_404(collection_uuid))
if not collection.is_visible_to(request.user):