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:
@@ -138,6 +138,7 @@
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th>ID отзыва</th>
|
||||
<th>Дата оценки</th>
|
||||
<th>Оценка</th>
|
||||
<th>Товар</th>
|
||||
<th>Покупатель</th>
|
||||
@@ -147,6 +148,8 @@
|
||||
{% for item in auto_reply_queue %}
|
||||
<tr>
|
||||
<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>
|
||||
{{ item.get("product_name") or "—" }}
|
||||
|
||||
Reference in New Issue
Block a user