diff --git a/templates/parts/info/_part_lots.html.twig b/templates/parts/info/_part_lots.html.twig
index cfb7190b..70e5dc4e 100644
--- a/templates/parts/info/_part_lots.html.twig
+++ b/templates/parts/info/_part_lots.html.twig
@@ -41,35 +41,37 @@
{{ lot.amount | format_amount(part.partUnit, {'decimals': 5}) }}
{% endif %}
-
- {% if lot.owner %}
-
+ |
+
+ {% if lot.owner %}
+
{{ helper.user_icon_link(lot.owner) }}
- {% endif %}
- {% if lot.expirationDate %}
-
+ {% endif %}
+ {% if lot.expirationDate %}
+
{{ lot.expirationDate | format_date() }}
- {% endif %}
- {% if lot.expired %}
-
+ {% endif %}
+ {% if lot.expired %}
+
{% trans %}part_lots.is_expired{% endtrans %}
- {% endif %}
- {% if lot.needsRefill %}
-
+ {% endif %}
+ {% if lot.needsRefill %}
+
{% trans %}part_lots.need_refill{% endtrans %}
- {% endif %}
- {% if lot.lastStocktakeAt %}
-
+ {% endif %}
+ {% if lot.lastStocktakeAt %}
+
{{ lot.lastStocktakeAt | format_datetime("short") }}
- {% endif %}
+ {% endif %}
+
|
|