{% import "helper.twig" as helper %}
{{ part.lastModified | localizeddate("short") }}
{{ part.addedDate | localizeddate("short") }}
{# Part mass #} {% if part.mass %}
{{ part.mass | siFormat("g") }}
{% endif %} {# Needs Review tag #} {% if part.needsReview %}
{% trans %}part.needs_review.badge{% endtrans %}
{% endif %} {# Favorite Status tag #} {% if part.favorite %}
{% trans %}part.favorite.badge{% endtrans %}
{% endif %} {% if part.obsolete %}
{% trans %}part.obsolete.badge{% endtrans %}
{% endif %} {# Manufacturing status tag #}
{{ helper.m_status_to_badge(part.manufacturingStatus) }}
{# Show tags #} {% if part.tags is not empty %}
{{ helper.string_to_tags(part.tags) }}
{% endif %}