diff --git a/templates/index.html b/templates/index.html
index 7392d56..21412de 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -138,6 +138,7 @@
| # |
ID отзыва |
+ Дата оценки |
Оценка |
Товар |
Покупатель |
@@ -147,6 +148,8 @@
{% for item in auto_reply_queue %}
| {{ loop.index }} |
+ {{ item.get("id") or "—" }} |
+ {{ item.get("review_created_at")|format_log_datetime if item.get("review_created_at") else "—" }} |
{{ item.rating }}★ |
{{ item.get("product_name") or "—" }}
|