Giới thiệu sản phẩm
<div class="comments mb-4">
{% for comment in comments %}
<div class="comment border rounded p-3 mb-3">
<p><strong>{{ comment.user }}</strong> - {{ comment.created_at|date:"d/m/Y H:i" }}</p>
<p>{{ comment.content }}</p>
<p>{{ comment.total_likes }} lượt thích</p>
{% if user.is_authenticated %}
<form action="{% url 'like_comment' comment.id %}" method="post" class="d-inline">
{% csrf_token %}
<button type="submit" class="btn btn-sm btn-outline-primary">
Thích
</button>
</form>
{% endif %}
</div>
{% empty %}
<p>Chưa có bình luận nào.</p>
{% endfor %}
</div>
<hr>
<h4>Thêm bình luận</h4>
{% if user.is_authenticated %}
<form method="POST">
{% csrf_token %}
{{ form.as_p }}
<button type="submit" class="btn btn-primary">Gửi</button>
</form>
{% else %}
<p>Vui lòng <a href="{% url 'login' %}">đăng nhập</a> để bình luận.</p>
{% endif %}
</div>
Hình ảnh sản phẩm

Sản phẩm cùng tác giả
Sản phẩm liên quan
Không có sản phẩm nào
Đăng nhập để tham gia bình luận