Add a tooltip with last update to discontinued items.

This commit is contained in:
Krzysztof Płaczek
2025-02-16 10:22:09 +01:00
parent 81f9c863c7
commit 5c2777999a
5 changed files with 13 additions and 4 deletions

View File

@@ -26,7 +26,7 @@
<span class="badge text-bg-warning">out of stock</span>
{% endif %}
{% if product.isDiscontinued() %}
<span class="badge text-bg-secondary">is discontinued</span>
<span class="badge text-bg-secondary" data-bs-toggle="tooltip" data-bs-title="Last update: {{ product.updated_at }}">is discontinued</span>
{% endif %}
{% if product.isNew() %}
<span class="badge text-bg-success">is new</span>