15 lines
567 B
Plaintext
15 lines
567 B
Plaintext
{% load i18n %}
|
|
|
|
{% trans "Low Stock Alert" %}
|
|
|
|
{% trans "Warning" %}: {% trans "The following product is running low on stock and needs attention." %}
|
|
|
|
{% trans "Product Details" %}:
|
|
{% trans "Name" %}: {{ product.name }}
|
|
{% trans "Type" %}: {% if product.product_type == 'fursuit' %}{% trans "Fursuit" %}{% else %}{% trans "Printed Item" %}{% endif %}
|
|
{% trans "SKU" %}: {{ product.sku }}
|
|
{% trans "Base Price" %}: {{ product.base_price }} €
|
|
|
|
{% trans "Current Stock" %}: {{ product.stock }}
|
|
|
|
{% trans "Manage this product at" %}: {{ product_url }} |