2022-12-24 01:28:24 -05:00
|
|
|
{% load static %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% load mastodon %}
|
|
|
|
{% load thumb %}
|
2023-02-11 20:40:00 -05:00
|
|
|
{% load user_actions %}
|
2023-05-20 11:01:18 -04:00
|
|
|
{% load duration %}
|
2025-02-06 19:17:53 +00:00
|
|
|
{% get_current_language as LANGUAGE_CODE %}
|
2022-12-24 01:28:24 -05:00
|
|
|
<!DOCTYPE html>
|
2025-02-06 19:17:53 +00:00
|
|
|
<html lang="{{ LANGUAGE_CODE }}" class="content-page">
|
2023-05-20 11:01:18 -04:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2024-05-20 23:17:47 -04:00
|
|
|
<title>{{ site_name }} - {{ item.display_title }} - {% trans 'Reviews' %}</title>
|
2024-01-07 17:24:34 -05:00
|
|
|
{% include "common_libs.html" %}
|
2023-05-20 11:01:18 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include '_header.html' %}
|
|
|
|
<main>
|
|
|
|
<div class="grid__main">
|
|
|
|
<h5>
|
2024-05-20 23:17:47 -04:00
|
|
|
<a href="{% url 'catalog:mark_list' item.url_path item.uuid %}">{% trans 'marks' %}</a>
|
|
|
|
| <a href="{% url 'catalog:mark_list' item.url_path item.uuid 'following' %}">{% trans 'marks from who you follow' %}</a>
|
|
|
|
| {% trans 'reviews' %}
|
2023-05-20 11:01:18 -04:00
|
|
|
</h5>
|
|
|
|
{% for review in reviews %}
|
|
|
|
<section>
|
|
|
|
<div class="action">
|
2023-12-29 16:03:31 -05:00
|
|
|
{% 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 %}
|
2023-05-20 11:01:18 -04:00
|
|
|
<span class="timestamp">{{ review.created_time|date }}</span>
|
2022-12-24 01:28:24 -05:00
|
|
|
</div>
|
2023-05-20 11:01:18 -04:00
|
|
|
<div>
|
|
|
|
{% if review.rating_grade %}{{ review.rating_grade|rating_star }}{% endif %}
|
|
|
|
<span>
|
|
|
|
<a href="{% url 'journal:review_retrieve' review.uuid %}">{{ review.title }}</a>
|
|
|
|
</span>
|
|
|
|
-
|
|
|
|
<span>
|
2023-06-30 23:53:53 -04:00
|
|
|
<a href="{{ review.owner.url }}"
|
2023-05-20 11:01:18 -04:00
|
|
|
class="nickname"
|
2024-02-25 23:04:50 -05:00
|
|
|
title="@{{ review.owner.handle }}">{{ review.owner.display_name }}</a>
|
2023-05-20 11:01:18 -04:00
|
|
|
</span>
|
|
|
|
</div>
|
2024-04-20 10:29:40 -04:00
|
|
|
<div class="tldr">{{ review.plain_content }}</div>
|
2023-05-20 11:01:18 -04:00
|
|
|
</section>
|
|
|
|
{% empty %}
|
2024-05-20 23:17:47 -04:00
|
|
|
<div>{% trans 'nothing so far.' %}</div>
|
2023-05-20 11:01:18 -04:00
|
|
|
{% endfor %}
|
2023-06-16 17:47:22 -04:00
|
|
|
{% include "_pagination.html" %}
|
2022-12-24 01:28:24 -05:00
|
|
|
</div>
|
2023-05-20 14:17:02 -04:00
|
|
|
<aside class="grid__aside top">
|
2023-06-09 02:45:27 -04:00
|
|
|
{% include "_sidebar_item.html" %}
|
2023-05-20 14:17:02 -04:00
|
|
|
</aside>
|
2023-05-20 11:01:18 -04:00
|
|
|
</main>
|
2023-06-09 03:01:17 -04:00
|
|
|
{% include "_footer.html" %}
|
2022-12-24 01:28:24 -05:00
|
|
|
</body>
|
2023-05-20 11:01:18 -04:00
|
|
|
</html>
|