Add ID and date columns to auto-reply queue display

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-15 17:51:23 +03:00
parent 53f1bb2e71
commit 773382a7bb
+3
View File
@@ -138,6 +138,7 @@
<tr> <tr>
<th>#</th> <th>#</th>
<th>ID отзыва</th> <th>ID отзыва</th>
<th>Дата оценки</th>
<th>Оценка</th> <th>Оценка</th>
<th>Товар</th> <th>Товар</th>
<th>Покупатель</th> <th>Покупатель</th>
@@ -147,6 +148,8 @@
{% for item in auto_reply_queue %} {% for item in auto_reply_queue %}
<tr> <tr>
<td>{{ loop.index }}</td> <td>{{ loop.index }}</td>
<td><code style="font-size:0.72rem;color:var(--c-text-muted)">{{ item.get("id") or "—" }}</code></td>
<td>{{ item.get("review_created_at")|format_log_datetime if item.get("review_created_at") else "—" }}</td>
<td><span class="rating rating--{{ item.rating }}">{{ item.rating }}★</span></td> <td><span class="rating rating--{{ item.rating }}">{{ item.rating }}★</span></td>
<td> <td>
{{ item.get("product_name") or "—" }} {{ item.get("product_name") or "—" }}